From 53da6585ecb9b4cc123707d54556b85a8500b599 Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Wed, 24 Apr 2024 08:38:27 +1000 Subject: Add Funny (#1523) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: ThatGravyBoat Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Co-authored-by: Linnea Gräf --- .../skyhanni/config/features/dev/DevConfig.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/dev/DevConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/dev/DevConfig.java index c66a23f08..c6aac8bbe 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/dev/DevConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/dev/DevConfig.java @@ -76,6 +76,28 @@ public class DevConfig { @ConfigEditorBoolean public boolean fancyContributors = true; + @Expose + @ConfigOption( + name = "Flip Contributors", + desc = "Make SkyHanni contributors appear upside down in the world.") + @ConfigEditorBoolean + public boolean flipContributors = true; + + @Expose + @ConfigOption( + name = "Spin Contributors", + desc = "Make SkyHanni contributors spin around when you are looking at them. " + + "§eRequires 'Flip Contributors' to be enabled.") + @ConfigEditorBoolean + public boolean rotateContributors = false; + + @Expose + @ConfigOption( + name = "SBA Contributors", + desc = "Mark SBA Contributors the same way as SkyHanni contributors.") + @ConfigEditorBoolean + public boolean fancySbaContributors = false; + @Expose @Category(name = "Minecraft Console", desc = "Minecraft Console Settings") public MinecraftConsoleConfig minecraftConsoles = new MinecraftConsoleConfig(); -- cgit