From 42876d4ed53e0df0bfed75eadfa9e76d96243443 Mon Sep 17 00:00:00 2001 From: Lorenz Date: Wed, 24 Aug 2022 09:18:06 +0200 Subject: add fandom /wiki command --- .../skyhanni/config/features/CommandsFeatures.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java (limited to 'src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java new file mode 100644 index 000000000..2e1c5ea8f --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java @@ -0,0 +1,13 @@ +package at.hannibal2.skyhanni.config.features; + +import at.hannibal2.skyhanni.config.gui.core.config.annotations.ConfigEditorBoolean; +import at.hannibal2.skyhanni.config.gui.core.config.annotations.ConfigOption; +import com.google.gson.annotations.Expose; + +public class CommandsFeatures { + + @Expose + @ConfigOption(name = "Fandom Wiki", desc = "Using §ehypixel-skyblock.fandom.com §7instead of Hypixel wiki") + @ConfigEditorBoolean + public boolean useFandomWiki = false; +} -- cgit