reconnect, 30% fixes from test feedback
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user