From cae19cc628c5187f7dc9d7e339ad33556357adfb Mon Sep 17 00:00:00 2001 From: appable <16139460+appable0@users.noreply.github.com> Date: Sun, 20 Oct 2024 14:44:28 -0700 Subject: Fix: tab completions for /p [ign] shorthand (#2769) --- .../skyhanni/features/commands/tabcomplete/PlayerTabComplete.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/at/hannibal2/skyhanni/features/commands/tabcomplete/PlayerTabComplete.kt b/src/main/java/at/hannibal2/skyhanni/features/commands/tabcomplete/PlayerTabComplete.kt index 400818ae8..e5be2e0e8 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/commands/tabcomplete/PlayerTabComplete.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/commands/tabcomplete/PlayerTabComplete.kt @@ -55,6 +55,7 @@ object PlayerTabComplete { parent("kick", "demote", "promote", "transfer") { add(partyMembersEntry) } literal("chat", "disband", "kickoffline", "leave", "list", "mute", "poll", "private", "settings", "warp") } + add(getExcluding(PlayerCategory.PARTY)) } parent("w", "msg", "tell", "boop") { add(getExcluding()) } -- cgit