BIG FIX XD

This commit is contained in:
2025-12-13 19:12:53 +01:00
parent cb6fd3a727
commit 0776da883f
12 changed files with 717 additions and 2 deletions

View File

@@ -219,6 +219,21 @@ namespace KCM
{
if (ChatInput.text.Length > 0)
{
if (ChatInput.text.Trim().Equals("/resync", StringComparison.OrdinalIgnoreCase))
{
try
{
new KCM.Packets.Network.ResyncRequestPacket { reason = "manual:/resync" }.Send();
LobbyHandler.AddSystemMessage("Resync requested.");
}
catch
{
}
ChatInput.text = "";
return;
}
new ChatMessage()
{
PlayerName = KCClient.inst.Name,