Skip to content

Commit

Permalink
修复了需要跳过一次打印循环的判断机制未正确生效的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
sheep-realms committed Oct 12, 2024
1 parent 8f332ac commit b03ce40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/echo.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class Echo {
if (typeof that.messageBuffer[0] == 'string') {
a = that.messageBuffer.shift();
// 中日韩字符及其他汉字文化圈字符跳过一回合
if ((a.search(this.skipOnePrintLoopChar) != -1) && that.typewrite == 'none') {
if ((a.search(that.skipOnePrintLoopChar) != -1) && that.typewrite == 'none') {
that.dbChrBuffer = a;
return;
}
Expand Down

0 comments on commit b03ce40

Please sign in to comment.