diff --git a/chat-plugins/mafia.js b/chat-plugins/mafia.js index 09b537962d..2e048439ed 100755 --- a/chat-plugins/mafia.js +++ b/chat-plugins/mafia.js @@ -227,7 +227,7 @@ class Mafia extends Rooms.RoomGame { // Simple window, used for announcements and the likes. mafiaWindow(image, content) { let output = '
'; - output += '

Day ' + this.day + '

'; + output += '

' + ((this.gamestate === 'day' || this.gamestate === 'lynch') ? 'Day ' : 'Night ') + this.day + '

'; output += '
' + image + ''; output += content; output += '
';