Skip to content

Commit 296552b

Browse files
authored
Cleared tourney organisers and removed tourney message (#712)
1 parent 0c47078 commit 296552b

File tree

2 files changed

+1
-20
lines changed

2 files changed

+1
-20
lines changed

src/modsadmins/tournamentOrganizers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// all in lower case
22
// TO = Tournament Organizer
3-
export const TOsArray: string[] = ['Tree3', 'Ref-Rain'];
3+
export const TOsArray: string[] = [];
44

55
export function isTO(username: string): boolean {
66
return TOsArray.includes(username.toLowerCase());

src/sockets/sockets.ts

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -723,25 +723,6 @@ export const server = function (io: SocketServer): void {
723723
socket.emit('allChatToClient', msg4);
724724
}
725725

726-
// TODO-kev: Remove below announcement on 8th Sep 2024
727-
socket.emit('allChatToClient', {
728-
message: '================',
729-
classStr: 'server-text-teal',
730-
dateCreated: new Date(),
731-
});
732-
733-
socket.emit('allChatToClient', {
734-
message: 'The 8 Player Avalon Tournament Signups are now open!',
735-
classStr: 'server-text-teal',
736-
dateCreated: new Date(),
737-
});
738-
739-
socket.emit('allChatToClient', {
740-
message: 'Register here: https://forms.gle/ghHgHhUhN2WYDKYEA',
741-
classStr: 'server-text-teal',
742-
dateCreated: new Date(),
743-
});
744-
745726
updateCurrentPlayersList(io);
746727
updateCurrentGamesList(io);
747728

0 commit comments

Comments
 (0)