Fixed chat not scrolling to the bottom at the start of matches

This commit is contained in:
Christian 'ketura' McCarty
2022-09-08 21:09:01 -05:00
parent 4bb8155ea4
commit 22eb30bbae

View File

@@ -334,9 +334,10 @@ var ChatBoxUI = Class.extend({
var locked = false;
var scroll = this.chatMessagesDiv.scrollTop();
var maxScroll = this.chatMessagesDiv[0].scrollHeight - this.chatMessagesDiv.outerHeight();
var noScrollBars = maxScroll <= 0;
var ratio = scroll / maxScroll;
if(msgClass === "warningMessage" || ratio >= 0.95)
if(msgClass === "warningMessage" || noScrollBars || maxScroll <= 30 || ratio >= 0.95)
locked = true;
if(this.pingRegex != null && this.pingRegex.test(message))