aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java
diff options
context:
space:
mode:
authorLorenz <lo.scherf@gmail.com>2022-08-24 09:18:06 +0200
committerLorenz <lo.scherf@gmail.com>2022-08-24 09:18:06 +0200
commit42876d4ed53e0df0bfed75eadfa9e76d96243443 (patch)
treec98fac1754aebb1554c4e281f9a2a0d0035b1481 /src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java
parent7cee419786c4a9d0fdf6a3c1a61d8385995b5dd5 (diff)
downloadSkyHanni-42876d4ed53e0df0bfed75eadfa9e76d96243443.tar.gz
SkyHanni-42876d4ed53e0df0bfed75eadfa9e76d96243443.tar.bz2
SkyHanni-42876d4ed53e0df0bfed75eadfa9e76d96243443.zip
add fandom /wiki command
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java13
1 files changed, 13 insertions, 0 deletions
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;
+}