From dd2ba5cf6a9570f8e3a27d6188da23da941f8338 Mon Sep 17 00:00:00 2001 From: ebayShopper Date: Mon, 11 Dec 2017 17:59:18 -0500 Subject: [PATCH] Fix mission check typo My mistake in 410ef64 --- SQF/dayz_server/init/mission_check.sqf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SQF/dayz_server/init/mission_check.sqf b/SQF/dayz_server/init/mission_check.sqf index 0ae40a343..1a6f9e8bd 100644 --- a/SQF/dayz_server/init/mission_check.sqf +++ b/SQF/dayz_server/init/mission_check.sqf @@ -13,8 +13,8 @@ _list = []; _file = toArray (toLower(preprocessFile _x)); _sum = 0; _count = {_sum = _sum + _x; true} count _file; - if (_count > 999999) then {_count = _count % 999999}; //Prevent scientific notation when converting to string below - if (_sum > 999999) then {_sum = _sum % 999999}; + if (_count > 999999) then {_count = _count mod 999999}; //Prevent scientific notation when converting to string below + if (_sum > 999999) then {_sum = _sum mod 999999}; _list set [count _list,[_count,_sum]]; } forEach _files; @@ -28,8 +28,8 @@ _temp setVehicleInit (str formatText[" _file = toArray (toLower(preprocessFile _x)); _sum = 0; _count = {_sum = _sum + _x; true} count _file; - if (_count > 999999) then {_count = _count % 999999}; - if (_sum > 999999) then {_sum = _sum % 999999}; + if (_count > 999999) then {_count = _count mod 999999}; + if (_sum > 999999) then {_sum = _sum mod 999999}; _list set [count _list,[_count,_sum]]; } forEach %1;