diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-15 18:27:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-15 18:27:28 +0200 |
commit | f270bf2074d3c10e6bfabc17b22df203aff12c2c (patch) | |
tree | 1b2a9a1573130371ee1dce8e9aee52ea46a253fc | |
parent | 6e73b7b440b22c0e93cbe40d852cc609f7397509 (diff) | |
download | NotEnoughUpdates-f270bf2074d3c10e6bfabc17b22df203aff12c2c.tar.gz NotEnoughUpdates-f270bf2074d3c10e6bfabc17b22df203aff12c2c.tar.bz2 NotEnoughUpdates-f270bf2074d3c10e6bfabc17b22df203aff12c2c.zip |
Autopet rule detection (#286)
* fixed autopet rule detection 'on island switch'
* no unnecessary debug changes left
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/PetInfoOverlay.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/PetInfoOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/PetInfoOverlay.java index f58ced51..761c0695 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/PetInfoOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/PetInfoOverlay.java @@ -32,7 +32,6 @@ import io.github.moulberry.notenoughupdates.core.util.StringUtils; import io.github.moulberry.notenoughupdates.core.util.lerp.LerpUtils; import io.github.moulberry.notenoughupdates.listener.RenderListener; import io.github.moulberry.notenoughupdates.options.NEUConfig; -import io.github.moulberry.notenoughupdates.overlays.EquipmentOverlay; import io.github.moulberry.notenoughupdates.overlays.TextOverlay; import io.github.moulberry.notenoughupdates.overlays.TextOverlayStyle; import io.github.moulberry.notenoughupdates.profileviewer.GuiProfileViewer; @@ -1044,8 +1043,7 @@ public class PetInfoOverlay extends TextOverlay { @SubscribeEvent(priority = EventPriority.HIGHEST) public void onChatReceived(ClientChatReceivedEvent event) { NEUConfig config = NotEnoughUpdates.INSTANCE.config; - if (NotEnoughUpdates.INSTANCE.hasSkyblockScoreboard() && - (config.petOverlay.enablePetInfo || config.itemOverlays.enableMonkeyCheck || config.petOverlay.petInvDisplay)) { + if (config.petOverlay.enablePetInfo || config.itemOverlays.enableMonkeyCheck || config.petOverlay.petInvDisplay) { if (event.type == 0) { String chatMessage = Utils.cleanColour(event.message.getUnformattedText()); |