From 200f6712797e59998f41ed5c7162727b7ccf71c7 Mon Sep 17 00:00:00 2001 From: Obsidian <108832807+Obsidianninja11@users.noreply.github.com> Date: Sun, 27 Oct 2024 05:11:26 -0800 Subject: Fix: Typos in Primal fear solver (#2834) --- .../at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt b/src/main/java/at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt index 22408ebfb..4eab98851 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt @@ -168,9 +168,9 @@ object TheGreatSpook { return } ChatUtils.clickToActionOrDisable( - "The answer is §b$answer§e.", + "The answer is: §b$answer§e.", config.primalFearSolver::math, - actionName = "Send the answer", + actionName = "send the answer", action = { HypixelCommands.allChat(answer.toString()) }, @@ -179,9 +179,9 @@ object TheGreatSpook { private fun publicSpeakingSolver() { ChatUtils.clickToActionOrDisable( - "Solving Public Speak puzzle for you.", + "Solving Public Speaking puzzle for you.", config.primalFearSolver::publicSpeaking, - actionName = "send a random string.", + actionName = "send a random string", action = { HypixelCommands.allChat("I looove SkyHanni! ${StringUtils.generateRandomString(4)}") }, -- cgit