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 +};