diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-28 00:53:40 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-28 00:53:40 +0100 |
commit | 122fdc9831c87038511c23e96d868482e588387d (patch) | |
tree | e026f917b475116d48d7317df786257f1d0fd6d0 /src/main | |
parent | 61494355b06d3c7bb715135679f7dec178dafeae (diff) | |
download | skyhanni-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.kt | 2 |
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), |