Skip to content

Commit 1a66aa9

Browse files
committed
fix: Allow debugchar character
1 parent dcfdac2 commit 1a66aa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/jagex2/client/Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4488,7 +4488,7 @@ public final void handleInputKey() {
44884488
this.redrawChatback = true;
44894489
}
44904490
} else if (this.chatInterfaceId == -1) {
4491-
if (var2 >= 32 && var2 <= 122 && this.chatTyped.length() < 80) {
4491+
if (var2 >= 32 && (var2 <= 122 || this.chatTyped.startsWith("::") && var2 <= 126) && this.chatTyped.length() < 80) {
44924492
this.chatTyped = this.chatTyped + (char) var2;
44934493
this.redrawChatback = true;
44944494
}

0 commit comments

Comments
 (0)