From fa09d3fddf4044d81f498b341a26e3dc22235341 Mon Sep 17 00:00:00 2001 From: jani270 <69345714+jani270@users.noreply.github.com> Date: Sat, 7 Oct 2023 17:27:23 +0200 Subject: Made Fatal Tempo same as chimera in estimated item value (#538) --- .../at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features') diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt index 4ec2dbf99..5dc5b9ea3 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt @@ -648,7 +648,7 @@ object EstimatedItemValue { var level = rawLevel var multiplier = 1 - if (rawName == "ultimate_chimera") { + if (rawName == "ultimate_chimera" || rawName == "ultimate_fatal_tempo") { when (rawLevel) { 2 -> multiplier = 2 -- cgit From 2efee154b649988045f179e622cc27afe3f93013 Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Sun, 8 Oct 2023 02:28:07 +1100 Subject: Fix: make contest menu show again (#537) --- .../garden/contest/JacobFarmingContestsInventory.kt | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features') diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/contest/JacobFarmingContestsInventory.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/contest/JacobFarmingContestsInventory.kt index 3ad7f70d7..55d8bd66e 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/contest/JacobFarmingContestsInventory.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/contest/JacobFarmingContestsInventory.kt @@ -92,24 +92,6 @@ class JacobFarmingContestsInventory { } } - @SubscribeEvent - fun onDrawSlot(event: GuiContainerEvent.DrawSlotEvent.GuiContainerDrawSlotPre) { - if (!LorenzUtils.inSkyBlock) return - if (!InventoryUtils.openInventoryName().contains("Your Contests")) return - - if (hideEverything) { - val slot = event.slot - val number = slot.slotNumber - if (number in 10..43) { - event.isCanceled = true - return - } - - } - - event.isCanceled = true - } - @SubscribeEvent fun onTooltip(event: LorenzToolTipEvent) { if (!LorenzUtils.inSkyBlock) return -- cgit