aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/PetInfoOverlay.java
diff options
context:
space:
mode:
authorNopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com>2022-01-13 07:31:50 +1100
committerGitHub <noreply@github.com>2022-01-12 21:31:50 +0100
commitc6a769f1524f404137af26de98bf39a06d5b0296 (patch)
treed78b271cfdb53ebd76555b41e87b4fd34a73b00e /src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/PetInfoOverlay.java
parent7d5e27e94e96b6d12543fd5041bf274b2758962f (diff)
downloadnotenoughupdates-c6a769f1524f404137af26de98bf39a06d5b0296.tar.gz
notenoughupdates-c6a769f1524f404137af26de98bf39a06d5b0296.tar.bz2
notenoughupdates-c6a769f1524f404137af26de98bf39a06d5b0296.zip
Some bugfixes (#56)
* fixed caching * Added skyblock check to replace social options * remove pet tooltip + made it not on by default * fixed texture oops * fixed texture oops
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/PetInfoOverlay.java')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/PetInfoOverlay.java2
1 files changed, 1 insertions, 1 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 8fe64b55..698cfad4 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/PetInfoOverlay.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/PetInfoOverlay.java
@@ -1110,7 +1110,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)) {
+ if (NotEnoughUpdates.INSTANCE.hasSkyblockScoreboard() && (config.petOverlay.enablePetInfo || config.itemOverlays.enableMonkeyCheck || config.petOverlay.petInvDisplay)) {
if (event.type == 0) {
String chatMessage = Utils.cleanColour(event.message.getUnformattedText());