diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-26 20:22:51 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-26 20:22:51 +0100 |
| commit | c1544a0166a13da57250eee2b60f063d461d10cd (patch) | |
| tree | 51615a0a34f9fcf991d2de863fb6d2071c570608 /src/main/java/at/hannibal2/skyhanni/features | |
| parent | 6d77a7113265d5dbe4f2e708b928d27f6494192d (diff) | |
| download | skyhanni-c1544a0166a13da57250eee2b60f063d461d10cd.tar.gz skyhanni-c1544a0166a13da57250eee2b60f063d461d10cd.tar.bz2 skyhanni-c1544a0166a13da57250eee2b60f063d461d10cd.zip | |
garden grammar fixes
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt | 2 | ||||
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt index 0be3874b5..7c3fc26a5 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt @@ -46,7 +46,7 @@ class GardenPlotBorders { val entity = Minecraft.getMinecraft().renderViewEntity - // Lowest point in garden + // Lowest point in the garden val minHeight = 66 val maxHeight = 256 diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt index df056bfc9..1e879f938 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt @@ -73,7 +73,7 @@ class PestFinder { return@buildList } - add(Renderable.string("§eTotal pests on garden: §c${totalAmount()}§7/§c8")) + add(Renderable.string("§eTotal pests in garden: §c${totalAmount()}§7/§c8")) for (plot in GardenPlotAPI.plots) { val pests = plot.pests @@ -105,7 +105,7 @@ class PestFinder { @SubscribeEvent fun onChat(event: LorenzChatEvent) { if (!isEnabled()) return - if (event.message == "§cThere are not any Pests on your Garden right now! Keep farming!") { + if (event.message == "§cThere are no pests in your Garden right now! Keep farming!") { GardenPlotAPI.plots.forEach { it.pests = 0 } @@ -117,7 +117,7 @@ class PestFinder { fun onDamageIndicatorDeath(event: DamageIndicatorDeathEvent) { if (!isEnabled()) return - // Check if an unknown damage indiactor mob dies in garden + // Check if an unknown damage indiactor mob dies in the garden val type = event.data.bossType if (!PestType.entries.any { it.damageIndicatorBoss == type }) return |
