File tree Expand file tree Collapse file tree 2 files changed +1
-20
lines changed Expand file tree Collapse file tree 2 files changed +1
-20
lines changed Original file line number Diff line number Diff line change 1
1
// all in lower case
2
2
// TO = Tournament Organizer
3
- export const TOsArray : string [ ] = [ 'Tree3' , 'Ref-Rain' ] ;
3
+ export const TOsArray : string [ ] = [ ] ;
4
4
5
5
export function isTO ( username : string ) : boolean {
6
6
return TOsArray . includes ( username . toLowerCase ( ) ) ;
Original file line number Diff line number Diff line change @@ -723,25 +723,6 @@ export const server = function (io: SocketServer): void {
723
723
socket . emit ( 'allChatToClient' , msg4 ) ;
724
724
}
725
725
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
-
745
726
updateCurrentPlayersList ( io ) ;
746
727
updateCurrentGamesList ( io ) ;
747
728
You can’t perform that action at this time.
0 commit comments