Skip to content

Commit

Permalink
Merge pull request #959 from CBATeam/fixSettingsSizeLimitation
Browse files Browse the repository at this point in the history
Workaround for settings size limitation
  • Loading branch information
Killswitch00 authored Aug 19, 2018
2 parents 4965324 + f404d7a commit ef9facb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/settings/fnc_parse.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private _fnc_parseAny = {
_string = _string splitString WHITESPACE joinString "";
};

parseSimpleArray format ["[%1]", _string] select 0
parseSimpleArray (["[", _string, "]"] joinString "") select 0
};

params [["_info", "", [""]], ["_validate", false, [false]], ["_source", "", [""]]];
Expand Down

0 comments on commit ef9facb

Please sign in to comment.