|
@@ -265,7 +265,10 @@ Error WebSocketMultiplayerPeer::_server_relay(int32_t p_from, int32_t p_to, cons
|
|
|
|
|
|
ERR_FAIL_COND_V(p_to == p_from, FAILED);
|
|
ERR_FAIL_COND_V(p_to == p_from, FAILED);
|
|
|
|
|
|
- return get_peer(p_to)->put_packet(p_buffer, p_buffer_size); // Sending to specific peer
|
|
|
|
|
|
+ Ref<WebSocketPeer> peer_to = get_peer(p_to);
|
|
|
|
+ ERR_FAIL_COND_V(peer_to.is_null(), FAILED);
|
|
|
|
+
|
|
|
|
+ return peer_to->put_packet(p_buffer, p_buffer_size); // Sending to specific peer
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|