diff options
| author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2023-10-26 17:47:10 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-26 08:47:10 +0200 |
| commit | 82a1bca332a650b2b6553d6382d4668dfe8f45a5 (patch) | |
| tree | 41fb4916dfae6f17ae9afa5bd122e4bddb6fb6af /src/main/java/at/hannibal2/skyhanni/features/bazaar | |
| parent | a8354888ea9fb7b833441248c5bd177779bc44cf (diff) | |
| download | skyhanni-82a1bca332a650b2b6553d6382d4668dfe8f45a5.tar.gz skyhanni-82a1bca332a650b2b6553d6382d4668dfe8f45a5.tar.bz2 skyhanni-82a1bca332a650b2b6553d6382d4668dfe8f45a5.zip | |
fix future neu crash (#624)
Fixed potential crash with future neu version. #624
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/bazaar')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarOpenPriceWebsite.kt | 4 |
1 files changed, 2 insertions, 2 deletions
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 +} |
