ClassDB API hash now only includes exposed classes

This commit is contained in:
Ignacio Etcheverry 2018-04-29 19:50:33 +02:00
parent 7034d48032
commit 3a86dffc5e

View file

@ -355,7 +355,7 @@ uint64_t ClassDB::get_api_hash(APIType p_api) {
ClassInfo *t = classes.getptr(E->get());
ERR_FAIL_COND_V(!t, 0);
if (t->api != p_api)
if (t->api != p_api || !t->exposed)
continue;
hash = hash_djb2_one_64(t->name.hash(), hash);
hash = hash_djb2_one_64(t->inherits.hash(), hash);