Fix always true/false values

This commit is contained in:
qarmin
2019-06-20 16:59:48 +02:00
parent 7a8dcb9a11
commit 072e40368e
32 changed files with 128 additions and 184 deletions

View File

@ -666,10 +666,8 @@ void ClassDB::bind_integer_constant(const StringName &p_class, const StringName
OBJTYPE_WLOCK;
ClassInfo *type = classes.getptr(p_class);
if (!type) {
ERR_FAIL_COND(!type);
}
ERR_FAIL_COND(!type);
if (type->constant_map.has(p_name)) {