From f39c83b6da97d03fbc78d8724d5cf726c6349596 Mon Sep 17 00:00:00 2001 From: jani270 <69345714+jani270@users.noreply.github.com> Date: Tue, 22 Oct 2024 21:45:42 +0200 Subject: Fix: Inconsistency in items created by SkyHanni (#2795) --- .../skyhanni/features/garden/visitor/GardenVisitorSupercraft.kt | 2 ++ .../features/inventory/auctionhouse/AuctionHouseOpenPriceWebsite.kt | 2 ++ .../skyhanni/features/inventory/bazaar/BazaarOpenPriceWebsite.kt | 2 ++ 3 files changed, 6 insertions(+) diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorSupercraft.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorSupercraft.kt index 9b14483dc..3820b4bd4 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorSupercraft.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorSupercraft.kt @@ -35,6 +35,8 @@ object GardenVisitorSupercraft { ItemUtils.createItemStack( neuItem.item, "§bSuper Craft", + "§8(From SkyHanni)", + "", "§7You have the items to craft", "§7Click me to open the super crafter!", ) diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/auctionhouse/AuctionHouseOpenPriceWebsite.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/auctionhouse/AuctionHouseOpenPriceWebsite.kt index 7229283ca..61ae93117 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/inventory/auctionhouse/AuctionHouseOpenPriceWebsite.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/auctionhouse/AuctionHouseOpenPriceWebsite.kt @@ -51,6 +51,8 @@ object AuctionHouseOpenPriceWebsite { private fun createDisplayItem() = ItemUtils.createItemStack( "PAPER".asInternalName().getItemStack().item, "§bPrice History", + "§8(From SkyHanni)", + "", "§7Click here to open", "§7the price history", "§7of §e$searchTerm", diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/bazaar/BazaarOpenPriceWebsite.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/bazaar/BazaarOpenPriceWebsite.kt index 216d3e108..f5946565b 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/inventory/bazaar/BazaarOpenPriceWebsite.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/bazaar/BazaarOpenPriceWebsite.kt @@ -26,6 +26,8 @@ object BazaarOpenPriceWebsite { ItemUtils.createItemStack( neuItem.item, "§bPrice History", + "§8(From SkyHanni)", + "", "§7Click here to open", "§7the price history", "§7on §cskyblock.bz", -- cgit