Kaynağa Gözat

Don't ignore the type mismatch in setter function

Bartłomiej T. Listwon 3 yıl önce
ebeveyn
işleme
42cce2891f
1 değiştirilmiş dosya ile 2 ekleme ve 0 silme
  1. 2 0
      modules/gdscript/gdscript.cpp

+ 2 - 0
modules/gdscript/gdscript.cpp

@@ -1257,6 +1257,8 @@ bool GDScriptInstance::set(const StringName &p_name, const Variant &p_value) {
 				call(member->setter, &val, 1, err);
 				if (err.error == Callable::CallError::CALL_OK) {
 					return true; //function exists, call was successful
+				} else {
+					return false;
 				}
 			} else {
 				if (member->data_type.has_type) {