aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorObsidian <108832807+Obsidianninja11@users.noreply.github.com>2024-10-27 05:11:26 -0800
committerGitHub <noreply@github.com>2024-10-27 13:11:26 +0000
commit200f6712797e59998f41ed5c7162727b7ccf71c7 (patch)
tree781ca8b2ef9b4ba2c78a88495bfb4ec320563aee
parent6ff118b5211031743ef929e3b5ef2a2c3f06f12d (diff)
downloadSkyHanni-200f6712797e59998f41ed5c7162727b7ccf71c7.tar.gz
SkyHanni-200f6712797e59998f41ed5c7162727b7ccf71c7.tar.bz2
SkyHanni-200f6712797e59998f41ed5c7162727b7ccf71c7.zip
Fix: Typos in Primal fear solver (#2834)
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/event/spook/TheGreatSpook.kt8
1 files 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)}")
},