diff options
| author | jani270 <69345714+jani270@users.noreply.github.com> | 2024-10-22 21:45:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-22 21:45:42 +0200 |
| commit | f39c83b6da97d03fbc78d8724d5cf726c6349596 (patch) | |
| tree | 960c2b0bbcf56c777efc7d214d5e6bcddc838219 | |
| parent | 9ecae1dd3811b4595be9c88819c78675de7f7cb1 (diff) | |
| download | SkyHanni-f39c83b6da97d03fbc78d8724d5cf726c6349596.tar.gz SkyHanni-f39c83b6da97d03fbc78d8724d5cf726c6349596.tar.bz2 SkyHanni-f39c83b6da97d03fbc78d8724d5cf726c6349596.zip | |
Fix: Inconsistency in items created by SkyHanni (#2795)
3 files changed, 6 insertions, 0 deletions
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", |
