mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
improved session termination and logging improved command parameter parsing session termination due to network problems should not be sending anything refactor session termination terminology moved textual session termination reasons to the same file as the termination reasons enum added optional reason to boot command boot axe man, char, griefing and spamming chat boot 0x5000000C, iid boot 1342177292, iid
11 lines
209 B
C#
11 lines
209 B
C#
namespace ACE.Server.Network.Enum
|
|
{
|
|
public enum SessionState
|
|
{
|
|
AuthLoginRequest,
|
|
AuthConnectResponse,
|
|
AuthConnected,
|
|
WorldConnected,
|
|
TerminationStarted,
|
|
}
|
|
}
|