range() with non-numeric const argument crash fix

This commit is contained in:
Thakee Nathees 2020-05-10 10:07:23 +05:30
parent ff5dfcdf68
commit 3e10392d48
1 changed files with 2 additions and 0 deletions

View File

@ -3160,6 +3160,8 @@ void GDScriptParser::_parse_block(BlockNode *p_block, bool p_static) {
ConstantNode *c = static_cast<ConstantNode *>(op->arguments[i]); ConstantNode *c = static_cast<ConstantNode *>(op->arguments[i]);
if (c->value.get_type() == Variant::FLOAT || c->value.get_type() == Variant::INT) { if (c->value.get_type() == Variant::FLOAT || c->value.get_type() == Variant::INT) {
constants.push_back(c->value); constants.push_back(c->value);
} else {
constant = false;
} }
} else { } else {
constant = false; constant = false;