fix : playerID == hashkey 통일 / long => int로 변경
This commit is contained in:
@@ -10,7 +10,7 @@ public class Session
|
||||
set;
|
||||
}
|
||||
|
||||
public long HashKey
|
||||
public int HashKey
|
||||
{
|
||||
get;
|
||||
init;
|
||||
@@ -63,7 +63,7 @@ public class Session
|
||||
RateLimitViolations = 0;
|
||||
}
|
||||
|
||||
public Session(long hashKey, NetPeer peer, int maxPacketsPerSecond = 60)
|
||||
public Session(int hashKey, NetPeer peer, int maxPacketsPerSecond = 60)
|
||||
{
|
||||
HashKey = hashKey;
|
||||
Peer = peer;
|
||||
|
||||
Reference in New Issue
Block a user