Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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 .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"files.trimTrailingWhitespace": true,
"editor.trimAutoWhitespace": true,
"editor.formatOnSave": true,
"files.eol": "\n",
"editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" },
"[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"typescript.format.semicolons": "insert",
Expand Down
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default [
'@stylistic/space-infix-ops': 'error',
'@stylistic/no-multi-spaces': 'error',
'@stylistic/keyword-spacing': 'error',
'@stylistic/linebreak-style': 'error',
'@stylistic/linebreak-style': ['error', 'unix'],
'quote-props': ['error', 'as-needed'],
'@stylistic/spaced-comment': 'error',
'@stylistic/no-extra-semi': 'error',
Expand Down
2 changes: 1 addition & 1 deletion src/Structures/MiniGames/BedWars/BedWarsTwoFour.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import BedWarsMode from './BedWarsMode.js';
class BedWarsTwoFour extends BedWarsMode {
tourney: BedWarsMode;
constructor(data: Record<string, any>) {
super(data, 'four_four');
super(data, 'two_four');
this.tourney = new BedWarsMode(data, 'tourney_bedwars_two_four_0');
}
}
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