diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2024-04-24 08:41:11 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 00:41:11 +0200 |
commit | c2a0e59d760b64b0fe7d1676470ebf931434be6d (patch) | |
tree | 9a42a880b175d34c2b2815648fdb8a62f72f4a03 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 53da6585ecb9b4cc123707d54556b85a8500b599 (diff) | |
download | skyhanni-c2a0e59d760b64b0fe7d1676470ebf931434be6d.tar.gz skyhanni-c2a0e59d760b64b0fe7d1676470ebf931434be6d.tar.bz2 skyhanni-c2a0e59d760b64b0fe7d1676470ebf931434be6d.zip |
Feature: Allow party members to request allinvite to be enabled (#1464)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/misc/PartyCommandsConfig.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/PartyCommandsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/PartyCommandsConfig.java index fb28b6544..cee11c99b 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/PartyCommandsConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/PartyCommandsConfig.java @@ -23,6 +23,11 @@ public class PartyCommandsConfig { @ConfigOption(name = "Party Warp", desc = "Automatically warp the party if someone types §b!warp") public boolean warpCommand = false; + @Expose + @ConfigEditorBoolean + @ConfigOption(name = "Party All Invite", desc = "Automatically turn on allinvite if someone types §b!allinv") + public boolean allInviteCommand = false; + public enum TrustedUser { BEST_FRIENDS("Best Friends"), FRIENDS("Friends"), |