diff options
| author | appable <16139460+appable0@users.noreply.github.com> | 2024-10-20 14:44:28 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-20 23:44:28 +0200 |
| commit | cae19cc628c5187f7dc9d7e339ad33556357adfb (patch) | |
| tree | b29301da1b8b8da5922469c9f332e0542c62a14f | |
| parent | 4deda67db56b237f277df8b41cedc052bba0d3fb (diff) | |
| download | SkyHanni-cae19cc628c5187f7dc9d7e339ad33556357adfb.tar.gz SkyHanni-cae19cc628c5187f7dc9d7e339ad33556357adfb.tar.bz2 SkyHanni-cae19cc628c5187f7dc9d7e339ad33556357adfb.zip | |
Fix: tab completions for /p [ign] shorthand (#2769)
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/commands/tabcomplete/PlayerTabComplete.kt | 1 |
1 files changed, 1 insertions, 0 deletions
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()) } |
