Merge pull request #38609 from ThakeeNathees/range-crash-with-non-numeric-const-fix
range() with non-numeric const argument crash fix
This commit is contained in:
commit
e7c9d81876
|
@ -3304,6 +3304,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::FLOAT || c->value.get_type() == Variant::INT) {
|
||||
constants.push_back(c->value);
|
||||
} else {
|
||||
constant = false;
|
||||
}
|
||||
} else {
|
||||
constant = false;
|
||||
|
|
Loading…
Reference in New Issue