You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fix Ref<>.is_valid() for ScriptInstanceExtension
Only check the reference not the value.
This commit is contained in:
@@ -651,7 +651,7 @@ public:
|
||||
|
||||
#ifdef TOOLS_ENABLED
|
||||
Ref<Script> script = get_script();
|
||||
if (script->is_valid() && pcount > 0) {
|
||||
if (script.is_valid() && pcount > 0) {
|
||||
p_list->push_back(script->get_class_category());
|
||||
}
|
||||
#endif // TOOLS_ENABLED
|
||||
|
||||
Reference in New Issue
Block a user