diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-21 18:06:22 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-21 18:06:22 +0100 |
commit | b803f6f41e083a9fa4b72cae8506ed799469baee (patch) | |
tree | bf40a7ad24eb87f9ce5bf4ec34a8309718146548 /src/main/java/at/hannibal2 | |
parent | d8a78b5f687394d71b2fc571cab6d1692755dd5d (diff) | |
download | skyhanni-b803f6f41e083a9fa4b72cae8506ed799469baee.tar.gz skyhanni-b803f6f41e083a9fa4b72cae8506ed799469baee.tar.bz2 skyhanni-b803f6f41e083a9fa4b72cae8506ed799469baee.zip |
Changed display icon for mushroom in best crop time and in next farming contest display from Red Mushroom to Red Mushroom Block
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/GardenAPI.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenAPI.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenAPI.kt index 3281bf39c..976edfb63 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenAPI.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenAPI.kt @@ -125,7 +125,7 @@ class GardenAPI { } private fun getItemStackForCrop(crop: String): ItemStack { - val internalName = NEUItems.getInternalName(if (crop == "Mushroom") "Red Mushroom" else crop) + val internalName = NEUItems.getInternalName(if (crop == "Mushroom") "Red Mushroom Block" else crop) return NEUItems.getItemStack(internalName) } |