summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt6
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