mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 13:07:04 +02:00
fixed minor bug, whoops
This commit is contained in:
parent
81f8c5bab8
commit
1e47165303
1 changed files with 1 additions and 1 deletions
|
@ -462,7 +462,7 @@ function addToLog(msg, dp, colour, tab) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function addToChatBarHistory(msg) {
|
function addToChatBarHistory(msg) {
|
||||||
chatBarHistory.unshift(cmd.message);
|
chatBarHistory.unshift(msg);
|
||||||
while (chatBarHistory.length > chatBarHistoryLimit) {
|
while (chatBarHistory.length > chatBarHistoryLimit) {
|
||||||
chatBarHistory.pop();
|
chatBarHistory.pop();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue