diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-05-29 09:44:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-29 09:44:03 +0200 |
commit | d0b62ce1558766134ea2fc6bcf912e837d0ae40b (patch) | |
tree | a0ce8cb1d18ff5000d30bc854102cd7681ff474d /modules/gdscript/gdscript_function.cpp | |
parent | e2bf28e80599d5bbe362410f2261a1abf495afa5 (diff) | |
parent | a5e8a3be5e0ed2e7c6b1a9cc5803d96391b180f3 (diff) | |
download | redot-engine-d0b62ce1558766134ea2fc6bcf912e837d0ae40b.tar.gz |
Merge pull request #19021 from Faless/rpc_sync_fix
RPCMode refactor, more sync modes
Diffstat (limited to 'modules/gdscript/gdscript_function.cpp')
-rw-r--r-- | modules/gdscript/gdscript_function.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_function.cpp b/modules/gdscript/gdscript_function.cpp index dac7da3a28..61130cb58f 100644 --- a/modules/gdscript/gdscript_function.cpp +++ b/modules/gdscript/gdscript_function.cpp @@ -1455,7 +1455,7 @@ GDScriptFunction::GDScriptFunction() : _stack_size = 0; _call_size = 0; - rpc_mode = ScriptInstance::RPC_MODE_DISABLED; + rpc_mode = MultiplayerAPI::RPC_MODE_DISABLED; name = "<anonymous>"; #ifdef DEBUG_ENABLED _func_cname = NULL; |