diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-02-18 13:23:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 13:23:08 +0100 |
commit | a748defeea5817667fcc4c042a22411c6c743904 (patch) | |
tree | a17e1831222fcf16699696ce71c782dc886b56c7 | |
parent | bdf3c578ff1d382ccf0c6bd2cde1abf5393fda53 (diff) | |
parent | a5d931033e4446e623b888ee029607557557d21f (diff) |
Merge pull request #46156 from Vignesh1-art/patch-1
Fixed Invalid function bindings #46135
-rw-r--r-- | modules/gdscript/language_server/gdscript_language_protocol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/language_server/gdscript_language_protocol.cpp b/modules/gdscript/language_server/gdscript_language_protocol.cpp index 5e3d6213d3..912c9a174e 100644 --- a/modules/gdscript/language_server/gdscript_language_protocol.cpp +++ b/modules/gdscript/language_server/gdscript_language_protocol.cpp @@ -163,7 +163,7 @@ void GDScriptLanguageProtocol::_bind_methods() { ClassDB::bind_method(D_METHOD("initialized", "params"), &GDScriptLanguageProtocol::initialized); ClassDB::bind_method(D_METHOD("on_client_connected"), &GDScriptLanguageProtocol::on_client_connected); ClassDB::bind_method(D_METHOD("on_client_disconnected"), &GDScriptLanguageProtocol::on_client_disconnected); - ClassDB::bind_method(D_METHOD("notify_client", "method", "params"), &GDScriptLanguageProtocol::notify_client, DEFVAL(Variant()), DEFVAL(-1)); + ClassDB::bind_method(D_METHOD("notify_client", "method", "params", "client_id"), &GDScriptLanguageProtocol::notify_client, DEFVAL(Variant()), DEFVAL(-1)); ClassDB::bind_method(D_METHOD("is_smart_resolve_enabled"), &GDScriptLanguageProtocol::is_smart_resolve_enabled); ClassDB::bind_method(D_METHOD("get_text_document"), &GDScriptLanguageProtocol::get_text_document); ClassDB::bind_method(D_METHOD("get_workspace"), &GDScriptLanguageProtocol::get_workspace); |