The parser used to read server config json does not know how to parse 900 into a float:
class DoesntWorkProperly: JsonApiStruct { float something; void WorseParserTest() { RegV("something"); } } string somejson = "{\"something\": 900}"; WorseParserTest test = new WorseParserTest; test.ExpandFromRAW(somejson); Print(test.something); // SCRIPT : float something = 0
However:
string somejson = "{\"something\": 900.0}"; WorseParserTest test = new WorseParserTest; test.ExpandFromRAW(somejson); Print(test.something); // SCRIPT : float something = 900
This is incorrect per JSON spec. Whole number should work for float. It does when using SCR_JsonLoadContext:
string somejson = "{\"something\": 900}"; SCR_JsonLoadContext ctx = new SCR_JsonLoadContext; ctx.ImportFromString(somejson); float value; ctx.ReadValue("something", value); Print(value); // SCRIPT : float value = 900
Please fix the parser so that we can use whole numbers to represent floats. :(