reconnect, 30% fixes from test feedback

This commit is contained in:
2026-05-01 18:56:37 +05:30
parent 1da7c052f8
commit e3aa51d3e7
383 changed files with 41074 additions and 98 deletions
+5
View File
@@ -45,6 +45,8 @@ public class NetPlayer : NetworkBehaviour
[Command]
void CmdSetTeam(Team team){
setMyTeam(team);
Logger.Log($"Client {netId} set team to {team}");
}
@@ -67,6 +69,7 @@ public class NetPlayer : NetworkBehaviour
void CmdSendTextEmote(string txtName){
RpcSendTextEmote(txtName);
ShowTextEmote(txtName);
Logger.Log($"Client {netId} sent text emote {txtName}");
}
[ClientRpc]
@@ -92,6 +95,8 @@ public class NetPlayer : NetworkBehaviour
void CmdSendEmojiEmote(int id){
RpcSendEmojiEmote(id);
ShowEmojiEmote(id);
Logger.Log($"Client {netId} sent emoji emote {id}");
}
[ClientRpc]