aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-28 00:53:40 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-28 00:53:40 +0100
commit122fdc9831c87038511c23e96d868482e588387d (patch)
treee026f917b475116d48d7317df786257f1d0fd6d0 /src/main
parent61494355b06d3c7bb715135679f7dec178dafeae (diff)
downloadskyhanni-122fdc9831c87038511c23e96d868482e588387d.tar.gz
skyhanni-122fdc9831c87038511c23e96d868482e588387d.tar.bz2
skyhanni-122fdc9831c87038511c23e96d868482e588387d.zip
Fixed Locust pest not getting detected in damage indicator.
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestType.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestType.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestType.kt
index 1e1765dff..946a37c4a 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestType.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestType.kt
@@ -7,7 +7,7 @@ enum class PestType(val displayName: String, val damageIndicatorBoss: BossType,
CRICKET("Cricket", BossType.GARDEN_PEST_CRICKET, SprayType.HONEY_JAR),
EARTHWORM("Earthworm", BossType.GARDEN_PEST_EARTHWORM, SprayType.COMPOST),
FLY("Fly", BossType.GARDEN_PEST_FLY, SprayType.DUNG),
- LOCTUS("Loctus", BossType.GARDEN_PEST_LOCUST, SprayType.PLANT_MATTER),
+ LOCUST("Locust", BossType.GARDEN_PEST_LOCUST, SprayType.PLANT_MATTER),
MITE("Mite", BossType.GARDEN_PEST_MITE, SprayType.TASTY_CHEESE),
MOSQUITO("Mosquito", BossType.GARDEN_PEST_MOSQUITO, SprayType.COMPOST),
MOTH("Moth", BossType.GARDEN_PEST_MOTH, SprayType.HONEY_JAR),