diff --git a/chat-plugins/roomsettings.js b/chat-plugins/roomsettings.js index 8c688c2551..e73200c083 100644 --- a/chat-plugins/roomsettings.js +++ b/chat-plugins/roomsettings.js @@ -101,7 +101,7 @@ class RoomSettings { if (this.room.slowchat === i) { slowchatOutput.push(this.button(`${i}s`, true)); } else { - slowchatOutput.push(this.button(`{i}s`, null, `slowchat ${i}`)); + slowchatOutput.push(this.button(`${i}s`, null, `slowchat ${i}`)); } } if (!this.room.slowchat) { @@ -119,7 +119,7 @@ class RoomSettings { } else if (this.room.toursEnabled === '%') { return this.button('%', true) + this.button('@', null, 'tournament enable @') + this.button('#', null, 'tournament disable'); } else { - return this.button('%', null, 'tournament enable %') + this.button('@', 'tournament enable @') + this.button('#', true); + return this.button('%', null, 'tournament enable %') + this.button('@', null, 'tournament enable @') + this.button('#', true); } } generateDisplay(user, room, connection) {