diff options
author | olim <bobq4582@gmail.com> | 2024-02-15 22:21:45 +0000 |
---|---|---|
committer | olim <bobq4582@gmail.com> | 2024-02-15 22:21:45 +0000 |
commit | db8aa8cf1b8978099379187213f2b78535291066 (patch) | |
tree | 81f859b06b97e3dba563fcbba70bd63d8953d327 /src/main/java/de/hysky/skyblocker/skyblock/chat/ChatRule.java | |
parent | d27d35e4caa652bd84a2421e2d544920ce9aa5fd (diff) | |
download | Skyblocker-db8aa8cf1b8978099379187213f2b78535291066.tar.gz Skyblocker-db8aa8cf1b8978099379187213f2b78535291066.tar.bz2 Skyblocker-db8aa8cf1b8978099379187213f2b78535291066.zip |
fix locations and increace text input length
fixed the location check being backwards and increased the length of the filter and replace inputs
Diffstat (limited to 'src/main/java/de/hysky/skyblocker/skyblock/chat/ChatRule.java')
-rw-r--r-- | src/main/java/de/hysky/skyblocker/skyblock/chat/ChatRule.java | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |