diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-02-09 23:38:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-09 23:38:16 +0100 |
commit | 6ad0ca8fcd08a5414788fdefc428d92b3f4a67a9 (patch) | |
tree | 72b13b0387c710d3a4652b9f5b7c81d156dda471 | |
parent | 8161e285126797b8076dbf7583df38bf0539d0a8 (diff) | |
parent | 9608e0571a9d859db90b37190a867a3618be08d2 (diff) |
Merge pull request #57876 from Faless/mp/4.x_clarify_rpc_error
[Net] Clarify RPC error when method is missing.
-rw-r--r-- | scene/multiplayer/scene_rpc_interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/multiplayer/scene_rpc_interface.cpp b/scene/multiplayer/scene_rpc_interface.cpp index 0cb703227b..2239a5d81c 100644 --- a/scene/multiplayer/scene_rpc_interface.cpp +++ b/scene/multiplayer/scene_rpc_interface.cpp @@ -459,7 +459,7 @@ void SceneRPCInterface::rpcp(Object *p_obj, int p_peer_id, const StringName &p_m uint16_t rpc_id = UINT16_MAX; const Multiplayer::RPCConfig config = _get_rpc_config(node, p_method, rpc_id); ERR_FAIL_COND_MSG(config.name == StringName(), - vformat("Unable to get the RPC configuration for the function \"%s\" at path: \"%s\". This happens when the method is not marked for RPCs.", p_method, node->get_path())); + vformat("Unable to get the RPC configuration for the function \"%s\" at path: \"%s\". This happens when the method is missing or not marked for RPCs in the local script.", p_method, node->get_path())); if (p_peer_id == 0 || p_peer_id == node_id || (p_peer_id < 0 && p_peer_id != -node_id)) { if (rpc_id & (1 << 15)) { call_local_native = config.call_local; |