Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ export default [
'no-implicit-coercion': 'error',
'@stylistic/eol-last': 'error',
'no-use-before-define': 'warn',
'@stylistic/linebreak-style': 'off',
'no-underscore-dangle': 'warn',
'no-unneeded-ternary': 'error',
'@stylistic/no-tabs': 'error',
Expand Down
2 changes: 2 additions & 0 deletions src/Structures/Player/Player.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ class Player {
return 'Admin';
case 'GAME_MASTER':
return 'Game Master';
case 'YOUTUBER':
return 'YouTube';
default:
return null;
}
Expand Down
Loading