aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/Features.java
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-01-07 08:49:03 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-01-07 08:49:03 +0100
commit66f5d815188c15a97463baf249bfc8ecfcdd55e7 (patch)
treee064a488ab213c36f4c0a3f50ee373be82451a59 /src/main/java/at/hannibal2/skyhanni/config/Features.java
parentea1822b746e682075a7b421dab7bd318b4a7e4eb (diff)
parentf365d1f6f2ebb3645ea7ad04736e98491781a284 (diff)
downloadSkyHanni-66f5d815188c15a97463baf249bfc8ecfcdd55e7.tar.gz
SkyHanni-66f5d815188c15a97463baf249bfc8ecfcdd55e7.tar.bz2
SkyHanni-66f5d815188c15a97463baf249bfc8ecfcdd55e7.zip
Merge branch 'dev'
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/Features.java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/Features.java13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/Features.java b/src/main/java/at/hannibal2/skyhanni/config/Features.java
index 0f7f0fd6c..39d20d74b 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/Features.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/Features.java
@@ -8,8 +8,8 @@ import at.hannibal2.skyhanni.config.core.config.Position;
import at.hannibal2.skyhanni.config.core.config.annotations.Category;
import at.hannibal2.skyhanni.config.core.config.gui.GuiPositionEditor;
import at.hannibal2.skyhanni.config.features.*;
-import at.hannibal2.skyhanni.features.HideArmor;
-import at.hannibal2.skyhanni.features.MarkedPlayerManager;
+import at.hannibal2.skyhanni.features.misc.HideArmor;
+import at.hannibal2.skyhanni.features.misc.MarkedPlayerManager;
import com.google.gson.annotations.Expose;
import net.minecraft.client.Minecraft;
@@ -37,6 +37,11 @@ public class Features extends Config {
return;
}
+ if (runnableId.equals("collectionCounter")) {
+ editOverlay(activeConfigCategory, 200, 16, misc.collectionCounterPos);
+ return;
+ }
+
if (runnableId.equals("debugPos")) {
editOverlay(activeConfigCategory, 200, 16, dev.debugPos);
return;
@@ -160,6 +165,10 @@ public class Features extends Config {
public MarkedPlayers markedPlayers = new MarkedPlayers();
@Expose
+ @Category(name = "Bingo", desc = "Features for the Bingo mode.")
+ public Bingo bingo = new Bingo();
+
+ @Expose
@Category(name = "Misc", desc = "Settings without a category.")
public Misc misc = new Misc();