diff --git a/scripts/communityModules/chat/FloofChat.js b/scripts/communityModules/chat/FloofChat.js index 304ad728d7..7859d95090 100644 --- a/scripts/communityModules/chat/FloofChat.js +++ b/scripts/communityModules/chat/FloofChat.js @@ -462,7 +462,7 @@ function addToLog(msg, dp, colour, tab) { } function addToChatBarHistory(msg) { - chatBarHistory.unshift(cmd.message); + chatBarHistory.unshift(msg); while (chatBarHistory.length > chatBarHistoryLimit) { chatBarHistory.pop(); }