From bc785eaf71cca4052d09d4ebdac7ecffb840e705 Mon Sep 17 00:00:00 2001 From: "Ghostrider [GRG]" Date: Sun, 14 Oct 2018 12:15:00 -0400 Subject: [PATCH] Update blckClient.sqf Correct issues that prevented captive/hostage missions from being cleared on Exile Servers. Thanks to MGTDB for the solution. --- MPMissions/Exile.Altis/debug/blckClient.sqf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MPMissions/Exile.Altis/debug/blckClient.sqf b/MPMissions/Exile.Altis/debug/blckClient.sqf index 856b475..87a3f0e 100644 --- a/MPMissions/Exile.Altis/debug/blckClient.sqf +++ b/MPMissions/Exile.Altis/debug/blckClient.sqf @@ -67,7 +67,7 @@ GMS_fnc_initHostage = { private _hostage = _this; - if (blck_modType isEqualTo "Epoch") then {_hostage call GMS_fnc_addHostageActions}; + _hostage call GMS_fnc_addHostageActions; _hostage call GMS_fnc_addAssetAnimations; diag_log format["_fnc_initHostage: hostage %1 initialized",_hostage]; }; @@ -114,7 +114,7 @@ GMS_fnc_initLeader = { private _leader = _this; - if (blck_modType isEqualTo "Epoch") then {_leader call GMS_fnc_addLeaderActions}; + _leader call GMS_fnc_addLeaderActions; _leader call GMS_fnc_addAssetAnimations; diag_log format["_fnc_initLeader: Leader %1 initialized",_leader]; }; @@ -339,4 +339,4 @@ if !(isServer) then }; diag_log "blck client loaded ver 7/29/18 for Version 6.84 8 PM"; -}; \ No newline at end of file +};