From d514844fddb2a02506561d1dc085c72aaa4dda9e Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Tue, 6 Dec 2022 17:07:22 -0500 Subject: [PATCH] Updated module description The module both counts and displays the count, so it makes more sense to say displays instead of counts. --- .../lambda/client/module/modules/combat/TotemPopCounter.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/lambda/client/module/modules/combat/TotemPopCounter.kt b/src/main/kotlin/com/lambda/client/module/modules/combat/TotemPopCounter.kt index 5d7c6acb8..94a761232 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/combat/TotemPopCounter.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/combat/TotemPopCounter.kt @@ -21,7 +21,7 @@ import java.util.* object TotemPopCounter : Module( name = "TotemPopCounter", - description = "Counts how many times players pop", + description = "Displays the number of times a player has popped", category = Category.COMBAT ) { private val countFriends by setting("Count Friends", true) @@ -120,4 +120,4 @@ object TotemPopCounter : Module( MessageSendHelper.sendChatMessage("$chatName $message") } } -} \ No newline at end of file +}