From c2a0e59d760b64b0fe7d1676470ebf931434be6d Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Wed, 24 Apr 2024 08:41:11 +1000 Subject: Feature: Allow party members to request allinvite to be enabled (#1464) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../hannibal2/skyhanni/config/features/misc/PartyCommandsConfig.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') 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"), -- cgit