Browse Source

Merge pull request #96173 from Repiteo/core/fix-unreachable-code

Core: Fix unreachable code
Rémi Verschelde 1 year ago
parent
commit
142d33211c
1 changed files with 2 additions and 1 deletions
  1. 2 1
      core/object/script_language.cpp

+ 2 - 1
core/object/script_language.cpp

@@ -712,8 +712,9 @@ Variant PlaceHolderScriptInstance::callp(const StringName &p_method, const Varia
 	} else {
 		return String("Attempt to call a method on a placeholder instance. Probably a bug, please report.");
 	}
-#endif
+#else
 	return Variant();
+#endif // TOOLS_ENABLED
 }
 
 void PlaceHolderScriptInstance::update(const List<PropertyInfo> &p_properties, const HashMap<StringName, Variant> &p_values) {