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
{
/** Logged in users session id */
SESSION_ID,
SESSION_ID = 0,
/** Currently acive raid information */
RAID_CONFIGURATION,
RAID_CONFIGURATION = 1,
/** Timestamp when client first connected */
CLIENT_START_TIMESTAMP,
CLIENT_START_TIMESTAMP = 2,
/** 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
{
SUCCESS,
FAILED,
NOT_FOUND,
UNDEFINED
}
SUCCESS = 0,
FAILED = 1,
NOT_FOUND = 2,
UNDEFINED = 3
}