diff --git a/life_server/Functions/MySQL/fn_mresArray.sqf b/life_server/Functions/MySQL/fn_mresArray.sqf index fd21532cf..069e2a23b 100644 --- a/life_server/Functions/MySQL/fn_mresArray.sqf +++ b/life_server/Functions/MySQL/fn_mresArray.sqf @@ -9,7 +9,7 @@ */ private ["_array"]; _array = [_this,0,[],[[]]] call BIS_fnc_param; -_array = str(str(_array)); +_array = str _array; _array = toArray(_array); for "_i" from 0 to (count _array)-1 do @@ -24,4 +24,4 @@ for "_i" from 0 to (count _array)-1 do }; }; -toString(_array); \ No newline at end of file +str(toString(_array));