diff options
author | Linnea Gräf <nea@nea.moe> | 2024-01-18 16:50:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 16:50:17 +0100 |
commit | 9827e764ea8e686d8e0a7b1d5b320da7ce85c227 (patch) | |
tree | 8070b2e83b9e8bd88362c2bef0fa706802644f5e /src/main/java/at/hannibal2/skyhanni/config | |
parent | ff75f3d0da65a06e9bde3afccb898326186c5317 (diff) | |
download | skyhanni-9827e764ea8e686d8e0a7b1d5b320da7ce85c227.tar.gz skyhanni-9827e764ea8e686d8e0a7b1d5b320da7ce85c227.tar.bz2 skyhanni-9827e764ea8e686d8e0a7b1d5b320da7ce85c227.zip |
feat: Party kick with reason (#874)
Party kick with reason #874
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/commands/CommandsConfig.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/commands/CommandsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/commands/CommandsConfig.java index 777d543a3..f6ff5ade2 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/commands/CommandsConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/commands/CommandsConfig.java @@ -25,6 +25,12 @@ public class CommandsConfig { @FeatureToggle public boolean shortCommands = true; + @ConfigOption(name = "Party Kick Reason", desc = "Kick people while sending a reason when using §e/pk lrg89 Dupe Archer§7 or §e/party kick nea89o Low Cata Level§7.") + @Expose + @ConfigEditorBoolean + @FeatureToggle + public boolean partyKickReason = true; + @Expose @ConfigOption(name = "Replace Warp Is", desc = "Adds §e/warp is §7alongside §e/is§7. Idk why. Ask §cKaeso") @ConfigEditorBoolean |