diff options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/misc/DiscordRPCConfig.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/DiscordRPCConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/DiscordRPCConfig.java index 53def7ffb..71bddc4ea 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/DiscordRPCConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/DiscordRPCConfig.java @@ -92,6 +92,11 @@ public class DiscordRPCConfig { @ConfigEditorDropdown public Property<LineEntry> auto = Property.of(NOTHING); + @Expose + @ConfigOption(name = "Show Button for SkyCrypt", desc = "Adds a button to the RPC that opens your SkyCrypt profile.") + @ConfigEditorBoolean + public Property<Boolean> showSkyCryptButton = Property.of(true); + public enum LineEntry implements HasLegacyId { NOTHING("Nothing", 0), LOCATION("Location", 1), |