diff options
| author | Poommetee Ketson | 2017-08-27 00:46:33 +0700 |
|---|---|---|
| committer | GitHub | 2017-08-27 00:46:33 +0700 |
| commit | 4950ef7478315cfcf27e12f0d3c0a034bd66cf92 (patch) | |
| tree | a77e540b0ef77958c18a8a4a2222fe3151f9342d /core/object.cpp | |
| parent | 9f1e3903df1b5d6b3df297b6ba87106c052d7b08 (diff) | |
| download | godot-4950ef7478315cfcf27e12f0d3c0a034bd66cf92.tar.gz godot-4950ef7478315cfcf27e12f0d3c0a034bd66cf92.tar.zst godot-4950ef7478315cfcf27e12f0d3c0a034bd66cf92.zip | |
Diffstat (limited to 'core/object.cpp')
| -rw-r--r-- | core/object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object.cpp b/core/object.cpp index 5e6c809f7..cd084a0c4 100644 --- a/core/object.cpp +++ b/core/object.cpp @@ -1472,7 +1472,7 @@ Error Object::connect(const StringName &p_signal, Object *p_to_object, const Str Signal::Target target(p_to_object->get_instance_id(), p_to_method); if (s->slot_map.has(target)) { - ERR_EXPLAIN("Signal '" + p_signal + "'' already connected to given method '" + p_to_method + "' in that object."); + ERR_EXPLAIN("Signal '" + p_signal + "' is already connected to given method '" + p_to_method + "' in that object."); ERR_FAIL_COND_V(s->slot_map.has(target), ERR_INVALID_PARAMETER); } |
