From 4b962ba078d7f17c9f458591d282d72e0d02fb47 Mon Sep 17 00:00:00 2001 From: "Ghostrider [GRG]" Date: Sun, 14 Oct 2018 12:16:48 -0400 Subject: [PATCH] Update blckClient.sqf --- MPMissions/epoch.Altis/debug/blckClient.sqf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MPMissions/epoch.Altis/debug/blckClient.sqf b/MPMissions/epoch.Altis/debug/blckClient.sqf index 856b475..87a3f0e 100644 --- a/MPMissions/epoch.Altis/debug/blckClient.sqf +++ b/MPMissions/epoch.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 +};