Browse Source

Improve error message when disconnecting callable from signal it was not connected to

RedworkDE 2 years ago
parent
commit
9c9fd9ffbf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/object/object.cpp

+ 1 - 1
core/object/object.cpp

@@ -1350,7 +1350,7 @@ bool Object::_disconnect(const StringName &p_signal, const Callable &p_callable,
 	}
 	ERR_FAIL_COND_V_MSG(!s, false, vformat("Disconnecting nonexistent signal '%s' in %s.", p_signal, to_string()));
 
-	ERR_FAIL_COND_V_MSG(!s->slot_map.has(*p_callable.get_base_comparator()), false, "Disconnecting nonexistent signal '" + p_signal + "', callable: " + p_callable + ".");
+	ERR_FAIL_COND_V_MSG(!s->slot_map.has(*p_callable.get_base_comparator()), false, "Attempt to disconnect a nonexistent connection from '" + to_string() + "'. Signal: '" + p_signal + "', callable: '" + p_callable + "'.");
 
 	SignalData::Slot *slot = &s->slot_map[*p_callable.get_base_comparator()];