From cc3ea04a7534b187673a05151f1f102ff869ce4c Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Wed, 2 Oct 2024 18:00:44 +0200 Subject: fixed typo in broodmother message --- .../java/at/hannibal2/skyhanni/features/combat/BroodmotherFeatures.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') diff --git a/src/main/java/at/hannibal2/skyhanni/features/combat/BroodmotherFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/combat/BroodmotherFeatures.kt index 4020e26d3..d122ba342 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/combat/BroodmotherFeatures.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/combat/BroodmotherFeatures.kt @@ -97,11 +97,9 @@ object BroodmotherFeatures { // this is so that two messages aren't immediately sent upon joining a server if (!(currentStage == StageEntry.ALIVE && isAliveMessageEnabled())) { val duration = currentStage?.duration - val minutes = duration?.inWholeMinutes?.toInt() ?: 0 - val pluralize = StringUtils.pluralize(minutes, "minute") var message = "The Broodmother's current stage in this server is ${currentStage.toString().replace("!", "")}§e." if (duration != 0.minutes) { - message += " It will spawn §bwithin $duration $pluralize§e." + message += " It will spawn §bwithin $duration§e." } ChatUtils.chat(message) return true -- cgit