aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-21 18:06:22 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-21 18:06:22 +0100
commitb803f6f41e083a9fa4b72cae8506ed799469baee (patch)
treebf40a7ad24eb87f9ce5bf4ec34a8309718146548 /src/main/java/at/hannibal2
parentd8a78b5f687394d71b2fc571cab6d1692755dd5d (diff)
downloadskyhanni-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.kt2
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)
}