We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcfdac2 commit 1a66aa9Copy full SHA for 1a66aa9
src/main/java/jagex2/client/Client.java
@@ -4488,7 +4488,7 @@ public final void handleInputKey() {
4488
this.redrawChatback = true;
4489
}
4490
} else if (this.chatInterfaceId == -1) {
4491
- if (var2 >= 32 && var2 <= 122 && this.chatTyped.length() < 80) {
+ if (var2 >= 32 && (var2 <= 122 || this.chatTyped.startsWith("::") && var2 <= 126) && this.chatTyped.length() < 80) {
4492
this.chatTyped = this.chatTyped + (char) var2;
4493
4494
0 commit comments