aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung
diff options
context:
space:
mode:
authorsyeyoung <cyong06@naver.com>2021-01-12 21:39:04 +0900
committersyeyoung <cyong06@naver.com>2021-01-12 21:39:04 +0900
commitbad5f165ff03497fca06633819bf40207ef5ac4a (patch)
tree692f06d59b08a6c9d8f04fa05ce6dcc6949d1b7e /src/main/java/kr/syeyoung
parent900c57dd3ebfcd3deae9302029785b6e0ba78947 (diff)
downloadSkyblock-Dungeons-Guide-bad5f165ff03497fca06633819bf40207ef5ac4a.tar.gz
Skyblock-Dungeons-Guide-bad5f165ff03497fca06633819bf40207ef5ac4a.tar.bz2
Skyblock-Dungeons-Guide-bad5f165ff03497fca06633819bf40207ef5ac4a.zip
how is chat macro against the rules but anyways
add warning, suggested by Dungeon Gang discord mod also I'm writing better commit message since there is actually a person... seeing this
Diffstat (limited to 'src/main/java/kr/syeyoung')
-rw-r--r--src/main/java/kr/syeyoung/dungeonsguide/features/FeatureRegistry.java2
-rw-r--r--src/main/java/kr/syeyoung/dungeonsguide/features/impl/FeatureAutoReparty.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/features/FeatureRegistry.java b/src/main/java/kr/syeyoung/dungeonsguide/features/FeatureRegistry.java
index d37f9bb6..5de307cc 100644
--- a/src/main/java/kr/syeyoung/dungeonsguide/features/FeatureRegistry.java
+++ b/src/main/java/kr/syeyoung/dungeonsguide/features/FeatureRegistry.java
@@ -67,6 +67,6 @@ public class FeatureRegistry {
public static final FeatureDungeonTombs DUNGEON_TOMBS = register(new FeatureDungeonTombs());
public static final FeatureDungeonScore DUNGEON_SCORE = register(new FeatureDungeonScore());
public static final FeatureWarnLowHealth DUNGEON_LOWHEALTH_WARN = register(new FeatureWarnLowHealth());
- public static final SimpleFeature DUNGEON_INTERMODCOMM = register(new SimpleFeature("Dungeon", "Communicate With Other's Dungeons Guide", "Sends total secret in the room to others\nSo that they can use the data to calculate total secret in dungeon run", "dungeon.intermodcomm", true));
+ public static final SimpleFeature DUNGEON_INTERMODCOMM = register(new SimpleFeature("Dungeon", "Communicate With Other's Dungeons Guide", "Sends total secret in the room to others\nSo that they can use the data to calculate total secret in dungeon run\n\nThis automates player chatting action, (chatting data) Thus it might be against hypixel's rules.\nBut mods like auto-gg which also automate player action and is kinda allowed mod exist so I'm leaving this feature.\nThis option is use-at-your-risk and you'll be responsible for ban if you somehow get banned because of this feature\n(Although it is not likely to happen)\nDefaults to off", "dungeon.intermodcomm", false));
public static final FeatureDungeonMap DUNGEON_MAP = register(new FeatureDungeonMap());
}
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/features/impl/FeatureAutoReparty.java b/src/main/java/kr/syeyoung/dungeonsguide/features/impl/FeatureAutoReparty.java
index ae01d5ee..2ff4ff2d 100644
--- a/src/main/java/kr/syeyoung/dungeonsguide/features/impl/FeatureAutoReparty.java
+++ b/src/main/java/kr/syeyoung/dungeonsguide/features/impl/FeatureAutoReparty.java
@@ -20,7 +20,7 @@ import org.lwjgl.opengl.GL11;
public class FeatureAutoReparty extends SimpleFeature implements DungeonEndListener {
public FeatureAutoReparty() {
- super("Bossfight", "Auto reparty when dungeon finishes","Auto reparty on dungeon finish", "bossfight.autoreparty", false);
+ super("Bossfight", "Auto reparty when dungeon finishes","Auto reparty on dungeon finish\n\nThis automates player chatting action, (disbanding, repartying) Thus it might be against hypixel's rules.\nBut mods like auto-gg exist so I'm leaving this feature.\nThis option is use-at-your-risk and you'll be responsible for ban if you somehow get banned because of this feature\n(Although it is not likely to happen)\nDefaults to off", "bossfight.autoreparty", false);
}
@Override