diff options
| author | Juan Linietsky | 2016-02-01 19:00:19 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2016-02-01 19:01:06 -0300 |
| commit | b587614653bc9fcd5b11934fc4aca7fe58d5d3a0 (patch) | |
| tree | 65ad352370934a790bd5664adf7f3eaed7d3b845 /core/variant_parser.cpp | |
| parent | cecb37a7a3269338432ec0cf455af355e8af0eb8 (diff) | |
| download | godot-b587614653bc9fcd5b11934fc4aca7fe58d5d3a0.tar.gz godot-b587614653bc9fcd5b11934fc4aca7fe58d5d3a0.tar.zst godot-b587614653bc9fcd5b11934fc4aca7fe58d5d3a0.zip | |
Diffstat (limited to 'core/variant_parser.cpp')
| -rw-r--r-- | core/variant_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant_parser.cpp b/core/variant_parser.cpp index 4976891e2..b95e52f7b 100644 --- a/core/variant_parser.cpp +++ b/core/variant_parser.cpp @@ -542,7 +542,7 @@ Error VariantParser::parse_value(Token& token,Variant &value,Stream *p_stream,in value=true; else if (id=="false") value=false; - else if (id=="null") + else if (id=="null" || id=="nil") value=Variant(); else if (id=="Vector2"){ |
