Update ChatReceivedEvent.java
making it trigger when macro is on
This commit is contained in:
parent
736d7157b9
commit
0fce0ff63e
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ public class ChatReceivedEvent {
|
|||
Flipper.state = FlipperState.NONE;
|
||||
Lilase.cofl.toggleAuction();
|
||||
}
|
||||
if (message.contains("You were spawned in Limbo") || message.contains("joined the lobby!")) {
|
||||
if (Lilase.cofl.isOpen() && (message.contains("You were spawned in Limbo") || message.contains("joined the lobby!"))) {
|
||||
try {
|
||||
if (this.lockForJoiningSkyblock.isLocked) return;
|
||||
this.lockForJoiningSkyblock.lock();
|
||||
|
|
Loading…
Reference in a new issue