diff options
author | Max Hilbrunner <m.hilbrunner@gmail.com> | 2021-10-06 23:51:57 +0200 |
---|---|---|
committer | Max Hilbrunner <m.hilbrunner@gmail.com> | 2021-10-06 23:51:57 +0200 |
commit | 44b68f08b4872871542f09565283caa40ab36ab9 (patch) | |
tree | 271650685dc48d91e074a10c73e66adf229c0efc /modules/gdscript/gdscript_parser.cpp | |
parent | 26f4848d013c5a234c2399717372ef72985cb655 (diff) | |
download | redot-engine-44b68f08b4872871542f09565283caa40ab36ab9.tar.gz |
Fix outdated no_call_local, use call_remote
Diffstat (limited to 'modules/gdscript/gdscript_parser.cpp')
-rw-r--r-- | modules/gdscript/gdscript_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp index ad75e8174c..93a5f7d493 100644 --- a/modules/gdscript/gdscript_parser.cpp +++ b/modules/gdscript/gdscript_parser.cpp @@ -3500,7 +3500,7 @@ bool GDScriptParser::network_annotations(const AnnotationNode *p_annotation, Nod } else if (mode == "unreliable_ordered") { rpc_config.transfer_mode = Multiplayer::TRANSFER_MODE_UNRELIABLE_ORDERED; } else { - push_error(R"(Invalid RPC argument. Must be one of: 'call_local'/'no_call_local' (local calls), 'any_peer'/'authority' (permission), 'reliable'/'unreliable'/'unreliable_ordered' (transfer mode).)", p_annotation); + push_error(R"(Invalid RPC argument. Must be one of: 'call_local'/'call_remote' (local calls), 'any_peer'/'authority' (permission), 'reliable'/'unreliable'/'unreliable_ordered' (transfer mode).)", p_annotation); } } } |