fixed lint/style/useEnumInitializers

This commit is contained in:
TheSparta 2023-10-31 16:23:00 +00:00
parent 27f7eb8caf
commit 0308ae4bf7
2 changed files with 9 additions and 9 deletions

View File

@ -1,11 +1,11 @@
export enum ContextVariableType export enum ContextVariableType
{ {
/** Logged in users session id */ /** Logged in users session id */
SESSION_ID, SESSION_ID = 0,
/** Currently acive raid information */ /** Currently acive raid information */
RAID_CONFIGURATION, RAID_CONFIGURATION = 1,
/** Timestamp when client first connected */ /** Timestamp when client first connected */
CLIENT_START_TIMESTAMP, CLIENT_START_TIMESTAMP = 2,
/** When player is loading into map and loot is requested */ /** When player is loading into map and loot is requested */
REGISTER_PLAYER_REQUEST REGISTER_PLAYER_REQUEST = 3
} }

View File

@ -197,8 +197,8 @@ export class DatabaseImporter implements OnLoad
enum VaildationResult enum VaildationResult
{ {
SUCCESS, SUCCESS = 0,
FAILED, FAILED = 1,
NOT_FOUND, NOT_FOUND = 2,
UNDEFINED UNDEFINED = 3
} }