diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-01-07 08:49:03 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-01-07 08:49:03 +0100 |
| commit | 66f5d815188c15a97463baf249bfc8ecfcdd55e7 (patch) | |
| tree | e064a488ab213c36f4c0a3f50ee373be82451a59 /src/main/java/at/hannibal2/skyhanni/config/Features.java | |
| parent | ea1822b746e682075a7b421dab7bd318b4a7e4eb (diff) | |
| parent | f365d1f6f2ebb3645ea7ad04736e98491781a284 (diff) | |
| download | SkyHanni-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.java | 13 |
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(); |
