From b4ad85e452d463566f40c9d6eba1b150dcfb9a6c Mon Sep 17 00:00:00 2001 From: qornwh1 Date: Fri, 6 Mar 2026 17:11:44 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=EB=8B=89=EB=84=A4=EC=9E=84=20hashkey?= =?UTF-8?q?=EB=A1=9C=20=EC=9E=84=EC=8B=9C=20=EB=8C=80=EC=B2=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MMOTestServer/MMOserver/Game/GameServer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MMOTestServer/MMOserver/Game/GameServer.cs b/MMOTestServer/MMOserver/Game/GameServer.cs index 0ef3b04..b0dd968 100644 --- a/MMOTestServer/MMOserver/Game/GameServer.cs +++ b/MMOTestServer/MMOserver/Game/GameServer.cs @@ -72,6 +72,7 @@ public class GameServer : ServerBase { HashKey = hashKey, PlayerId = (int)(hashKey & 0x7FFFFFFF), + Nickname = (hashKey & 0x7FFFFFFF).ToString() }; cm.AddUser(1, hashKey, newPlayer, peer); @@ -359,6 +360,7 @@ public class GameServer : ServerBase { HashKey = hashKey, PlayerId = (int)(hashKey & 0x7FFFFFFF), + Nickname = (hashKey & 0x7FFFFFFF).ToString() }; cm.AddUser(packet.ChannelId, hashKey, newPlayer, peer);