We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42ae3fa commit 8ea8b4eCopy full SHA for 8ea8b4e
src/main/java/jagex2/client/Client.java
@@ -4362,7 +4362,7 @@ public void handleInputKey() {
4362
this.redrawChatback = true;
4363
}
4364
} else if (this.chatInterfaceId == -1) {
4365
- if (var2 >= 32 && var2 <= 122 && this.chatTyped.length() < 80) {
+ if (var2 >= 32 && (var2 <= 122 || (this.chatTyped.startsWith("::") && var2 <= 126)) && this.chatTyped.length() < 80) {
4366
this.chatTyped = this.chatTyped + (char) var2;
4367
4368
0 commit comments