diff --git a/mpmissions/Exile.Altis/ExAdClient/Hacking/Functions/fn_canHackSafe.sqf b/mpmissions/Exile.Altis/ExAdClient/Hacking/Functions/fn_canHackSafe.sqf index bafa96a..764cf96 100644 --- a/mpmissions/Exile.Altis/ExAdClient/Hacking/Functions/fn_canHackSafe.sqf +++ b/mpmissions/Exile.Altis/ExAdClient/Hacking/Functions/fn_canHackSafe.sqf @@ -15,4 +15,4 @@ See the License for the specific language governing permissions and limitations under the License. */ -(('Exile_Item_Laptop' in (magazines player)) && ((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo -1) && (({alive _x}count playableUnits) >= ExAd_HACKING_MIN_PLAYERS_ONLINE)) \ No newline at end of file +(('Exile_Item_Laptop' in (magazines player)) && ((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo -1) && (({alive _x}count allPlayers) >= ExAd_HACKING_MIN_PLAYERS_ONLINE)) \ No newline at end of file diff --git a/mpmissions/Exile.Altis/ExAdClient/Hacking/Functions/fn_canHackVG.sqf b/mpmissions/Exile.Altis/ExAdClient/Hacking/Functions/fn_canHackVG.sqf index 5bd5a25..3e3e881 100644 --- a/mpmissions/Exile.Altis/ExAdClient/Hacking/Functions/fn_canHackVG.sqf +++ b/mpmissions/Exile.Altis/ExAdClient/Hacking/Functions/fn_canHackVG.sqf @@ -15,4 +15,4 @@ See the License for the specific language governing permissions and limitations under the License. */ -(('Exile_Item_Laptop' in (magazines player)) && ((([ExileClientInteractionObject, getPlayerUID player] call ExileClient_util_territory_getAccessLevel) select 0) < ExAd_VG_ACCESS_LEVEL) && (({alive _x}count playableUnits) >= ExAd_HACKING_MIN_PLAYERS_ONLINE)) \ No newline at end of file +(('Exile_Item_Laptop' in (magazines player)) && ((([ExileClientInteractionObject, getPlayerUID player] call ExileClient_util_territory_getAccessLevel) select 0) < ExAd_VG_ACCESS_LEVEL) && (({alive _x}count allPlayers) >= ExAd_HACKING_MIN_PLAYERS_ONLINE)) \ No newline at end of file diff --git a/mpmissions/Exile.Altis/ExAdClient/StatsBar/Functions/fn_getPlayersStr.sqf b/mpmissions/Exile.Altis/ExAdClient/StatsBar/Functions/fn_getPlayersStr.sqf index 2b55c65..682561e 100644 --- a/mpmissions/Exile.Altis/ExAdClient/StatsBar/Functions/fn_getPlayersStr.sqf +++ b/mpmissions/Exile.Altis/ExAdClient/StatsBar/Functions/fn_getPlayersStr.sqf @@ -19,6 +19,6 @@ private["_img","_text"]; _img = [ExAd_SB_ICON_PLAYERS] call ExAd_fnc_formatSBImage; -_text = count playableUnits; +_text = count allPlayers; [[_img, _text]] call ExAd_fnc_formatSBOutput \ No newline at end of file