From c7c98e8cceb99691117d2b18da6c4e3db4272b6e Mon Sep 17 00:00:00 2001 From: Lukas Moungos Date: Sat, 14 Dec 2019 16:48:58 +0100 Subject: [PATCH] fix --- ReallifeGamemode.Client/util/Gangwar.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ReallifeGamemode.Client/util/Gangwar.ts b/ReallifeGamemode.Client/util/Gangwar.ts index e9c9951f..c734b667 100644 --- a/ReallifeGamemode.Client/util/Gangwar.ts +++ b/ReallifeGamemode.Client/util/Gangwar.ts @@ -257,7 +257,8 @@ self._entered = true; if (self._status === "attack") { mp.game.audio.playSoundFrontend(1, "Enter_Capture_Zone", "DLC_Apartments_Drop_Zone_Sounds", true); - mp.game.graphics.startScreenEffect("MinigameTransitionIn", 500, false); + mp.game.graphics.startScreenEffect("MinigameTransitionOut", 500, false); + } mp.events.callRemote("Gangarea:Enter", JSON.stringify(self.id)); @@ -267,7 +268,7 @@ self._entered = false; if (self._status === "attack") { mp.game.audio.playSoundFrontend(1, "Exit_Capture_Zone", "DLC_Apartments_Drop_Zone_Sounds", true); - mp.game.graphics.startScreenEffect("MinigameTransitionOut", 500, false); + mp.game.graphics.startScreenEffect("MinigameTransitionIn", 500, false); } mp.events.callRemote("Gangarea:Leave", JSON.stringify(self.id)); }