aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung/dungeonsguide/features/impl/etc
diff options
context:
space:
mode:
authorsyeyoung <cyong06@naver.com>2021-02-28 00:09:13 +0900
committersyeyoung <cyong06@naver.com>2021-02-28 00:09:13 +0900
commit38a65e1d183cde880fd0e88b22d5f58f3b487167 (patch)
tree6692f82f19f4f571a902e262e0fc97ceb2239e5a /src/main/java/kr/syeyoung/dungeonsguide/features/impl/etc
parent01f5b97bd5e0f9369f883982752852c0fbb09bc1 (diff)
downloadSkyblock-Dungeons-Guide-38a65e1d183cde880fd0e88b22d5f58f3b487167.tar.gz
Skyblock-Dungeons-Guide-38a65e1d183cde880fd0e88b22d5f58f3b487167.tar.bz2
Skyblock-Dungeons-Guide-38a65e1d183cde880fd0e88b22d5f58f3b487167.zip
fix bugs, add new feature
Diffstat (limited to 'src/main/java/kr/syeyoung/dungeonsguide/features/impl/etc')
-rw-r--r--src/main/java/kr/syeyoung/dungeonsguide/features/impl/etc/FeatureRepartyCommand.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/features/impl/etc/FeatureRepartyCommand.java b/src/main/java/kr/syeyoung/dungeonsguide/features/impl/etc/FeatureRepartyCommand.java
new file mode 100644
index 00000000..5212b3ed
--- /dev/null
+++ b/src/main/java/kr/syeyoung/dungeonsguide/features/impl/etc/FeatureRepartyCommand.java
@@ -0,0 +1,11 @@
+package kr.syeyoung.dungeonsguide.features.impl.etc;
+
+import kr.syeyoung.dungeonsguide.features.FeatureParameter;
+import kr.syeyoung.dungeonsguide.features.SimpleFeature;
+
+public class FeatureRepartyCommand extends SimpleFeature {
+ public FeatureRepartyCommand() {
+ super("ETC", "Enable Reparty Command From DG", "if you disable, /dg reparty will still work, Auto reparty will still work\nRequires Restart to get applied", "qol.reparty");
+ parameters.put("command", new FeatureParameter<String>("command", "The Command", "Command that the reparty will be bound to", "reparty", "string"));
+ }
+}