diff options
author | Brady <thatgravyboat@gmail.com> | 2024-04-27 08:04:42 -0230 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-27 12:34:42 +0200 |
commit | d7bd34e7a35c8908f1ed8dd1bb934cf36993789c (patch) | |
tree | 40854cc50e6b5c7f06430e89de0633e31953c909 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | d674606e0454239bc610330be923486efb19a93b (diff) | |
download | skyhanni-d7bd34e7a35c8908f1ed8dd1bb934cf36993789c.tar.gz skyhanni-d7bd34e7a35c8908f1ed8dd1bb934cf36993789c.tar.bz2 skyhanni-d7bd34e7a35c8908f1ed8dd1bb934cf36993789c.zip |
Add SkyCrypt button to RPC (#1526)
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), |