range() with non-numeric const argument crash fix

(cherry picked from commit 3e10392d48)
This commit is contained in:
Thakee Nathees 2020-05-10 10:07:23 +05:30 committed by Rémi Verschelde
parent ee7bde231c
commit 72aa9ce7fc

View file

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