From 82a1bca332a650b2b6553d6382d4668dfe8f45a5 Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Thu, 26 Oct 2023 17:47:10 +1100 Subject: fix future neu crash (#624) Fixed potential crash with future neu version. #624 --- .../at/hannibal2/skyhanni/features/bazaar/BazaarOpenPriceWebsite.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/bazaar') diff --git a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarOpenPriceWebsite.kt b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarOpenPriceWebsite.kt index b39809125..74922ebe4 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarOpenPriceWebsite.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarOpenPriceWebsite.kt @@ -18,7 +18,7 @@ class BazaarOpenPriceWebsite { private var lastClick = SimpleTimeMark.farPast() private val item by lazy { - val neuItem = NEUItems.getItemStack("PAPER", true) + val neuItem = NEUItems.getItemStack("PAPER") Utils.createItemStack( neuItem.item, "§bPrice History", @@ -62,4 +62,4 @@ class BazaarOpenPriceWebsite { } fun isEnabled() = config.openPriceWebsite -} \ No newline at end of file +} -- cgit