From a6a2287c46f10c504d4bef9a9761f907372863e3 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Tue, 18 Apr 2023 21:26:04 +0200 Subject: Fixed 'Clicking on the visitor item list opens the /bazaar actually' working --- .../hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main') diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt index fe792b71e..458e8e218 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt @@ -143,7 +143,7 @@ class GardenVisitorFeatures { val thePlayer = Minecraft.getMinecraft().thePlayer thePlayer.sendChatMessage("/bz ${name.removeColor()}"); } - }) { GardenAPI.inGarden() && InventoryUtils.inStorage() }) + }) { GardenAPI.inGarden() && !InventoryUtils.inStorage() }) if (config.visitorNeedsShowPrice) { val price = NEUItems.getPrice(internalName) * amount -- cgit