fixed lint/style/useEnumInitializers
This commit is contained in:
parent
27f7eb8caf
commit
0308ae4bf7
@ -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
|
||||
}
|
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user