diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-01-13 20:42:39 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-01-13 20:42:39 +0100 |
commit | a44e9ebfa410f38ad545a9c8e954474d3a285705 (patch) | |
tree | 710cf5eaa7cb2066c00c4d2be7c3ef2042a68b63 /main/main.cpp | |
parent | c633a29a391c8797ace9ebb838390b318e8c91a9 (diff) |
Fix wrong type check for autoload
Regression from c633a29. Fixes #3342
Diffstat (limited to 'main/main.cpp')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index f9bf406724..8319c415fc 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1374,7 +1374,7 @@ bool Main::start() { } else if (res->is_type("Script")) { Ref<Script> s = res; StringName ibt = s->get_instance_base_type(); - bool valid_type = !ObjectTypeDB::is_type(ibt,"Node"); + bool valid_type = ObjectTypeDB::is_type(ibt,"Node"); ERR_EXPLAIN("Script does not inherit a Node: "+path); ERR_CONTINUE( !valid_type ); |