Runtime fixies

This commit is contained in:
d3athrow
2015-01-29 18:44:36 -06:00
parent 95acf2f308
commit f1644bb0af
29 changed files with 261 additions and 215 deletions

View File

@@ -141,7 +141,9 @@ json_reader
return tokens[i]
next_token()
return tokens[++i]
if(++i <= tokens.len)
return tokens[i]
return
read_token(val, type)
var/json_token/T = get_token()