aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-24 12:07:57 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-24 12:07:57 +0200
commit0381d759c3f4859b2bc4d93345018e32d47bae77 (patch)
tree7685f1d668200f74142e54c8eeebecd2040b3220 /src
parentd0d80ef7f21a86cf7e3f7f85d9c0c377277cadf8 (diff)
downloadskyhanni-0381d759c3f4859b2bc4d93345018e32d47bae77.tar.gz
skyhanni-0381d759c3f4859b2bc4d93345018e32d47bae77.tar.bz2
skyhanni-0381d759c3f4859b2bc4d93345018e32d47bae77.zip
typo
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/PartyAPI.kt5
2 files changed, 5 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
index 22af1efcd..625bc7f83 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -254,7 +254,7 @@ object Commands {
) { SkyHanniDebugsAndTests.copyItemInternalName() }
registerCommand(
"shpartydebug",
- "Lists person SkyHanni thinks is in your party into the chat."
+ "List persons into the chat SkyHanni thinks are in your party."
) { PartyAPI.listMembers() }
}
diff --git a/src/main/java/at/hannibal2/skyhanni/data/PartyAPI.kt b/src/main/java/at/hannibal2/skyhanni/data/PartyAPI.kt
index bb5185852..1cf79bf02 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/PartyAPI.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/PartyAPI.kt
@@ -20,7 +20,10 @@ class PartyAPI {
LorenzUtils.chat(" §a- §7$member")
}
- if (Random.nextDouble() < 0.1) OSUtils.openBrowser("https://www.youtube.com/watch?v=iANP7ib7CPA")
+ if (Random.nextDouble() < 0.1) {
+ OSUtils.openBrowser("https://www.youtube.com/watch?v=iANP7ib7CPA")
+ LorenzUtils.hoverableChat("§7Are You Ready To Party?", listOf("§b~Spongebob"))
+ }
}
val partyMembers = mutableListOf<String>()