From db8aa8cf1b8978099379187213f2b78535291066 Mon Sep 17 00:00:00 2001 From: olim Date: Thu, 15 Feb 2024 22:21:45 +0000 Subject: fix locations and increace text input length fixed the location check being backwards and increased the length of the filter and replace inputs --- src/main/java/de/hysky/skyblocker/skyblock/chat/ChatRule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/de/hysky/skyblocker/skyblock/chat/ChatRule.java') diff --git a/src/main/java/de/hysky/skyblocker/skyblock/chat/ChatRule.java b/src/main/java/de/hysky/skyblocker/skyblock/chat/ChatRule.java index af35647f..0fe1c3f1 100644 --- a/src/main/java/de/hysky/skyblocker/skyblock/chat/ChatRule.java +++ b/src/main/java/de/hysky/skyblocker/skyblock/chat/ChatRule.java @@ -208,7 +208,7 @@ public class ChatRule { } } } - if (isLocationValid == null || !isLocationValid){//if location is not in the list at all and is a not a "!" location or and is a normal location + if (isLocationValid == null || isLocationValid){//if location is not in the list at all and is a not a "!" location or and is a normal location return true; } -- cgit