diff options
author | Walker Selby <git@walkerselby.com> | 2023-12-11 12:08:24 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-11 21:08:24 +0100 |
commit | 9a5d44a2a68a20429b5d66328f1e2a3a7cfca03b (patch) | |
tree | f18bd603f3a137c49cc5686e37eccce236cdcfd1 /src/main/java/at/hannibal2/skyhanni/config/Features.java | |
parent | 5938c9a1220a390d930adf9067c606c7f0d1c667 (diff) | |
download | skyhanni-9a5d44a2a68a20429b5d66328f1e2a3a7cfca03b.tar.gz skyhanni-9a5d44a2a68a20429b5d66328f1e2a3a7cfca03b.tar.bz2 skyhanni-9a5d44a2a68a20429b5d66328f1e2a3a7cfca03b.zip |
Feature: Highlight Placeable NPCs (Stranded) (#723)
Highlights NPCs in the stranded menu that are placeable but not placed. #723
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/Features.java')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/Features.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/Features.java b/src/main/java/at/hannibal2/skyhanni/config/Features.java index bb0861e83..e4f9e548e 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/Features.java +++ b/src/main/java/at/hannibal2/skyhanni/config/Features.java @@ -12,8 +12,8 @@ import at.hannibal2.skyhanni.config.features.dev.DevConfig; import at.hannibal2.skyhanni.config.features.dungeon.DungeonConfig; import at.hannibal2.skyhanni.config.features.event.EventConfig; import at.hannibal2.skyhanni.config.features.fishing.FishingConfig; -import at.hannibal2.skyhanni.config.features.gui.GUIConfig; import at.hannibal2.skyhanni.config.features.garden.GardenConfig; +import at.hannibal2.skyhanni.config.features.gui.GUIConfig; import at.hannibal2.skyhanni.config.features.inventory.InventoryConfig; import at.hannibal2.skyhanni.config.features.itemability.ItemAbilityConfig; import at.hannibal2.skyhanni.config.features.markedplayer.MarkedPlayerConfig; @@ -22,6 +22,7 @@ import at.hannibal2.skyhanni.config.features.minion.MinionsConfig; import at.hannibal2.skyhanni.config.features.misc.MiscConfig; import at.hannibal2.skyhanni.config.features.rift.RiftConfig; import at.hannibal2.skyhanni.config.features.slayer.SlayerConfig; +import at.hannibal2.skyhanni.config.features.stranded.StrandedConfig; import com.google.gson.annotations.Expose; import io.github.moulberry.moulconfig.Config; import io.github.moulberry.moulconfig.Social; @@ -138,6 +139,10 @@ public class Features extends Config { public SlayerConfig slayer = new SlayerConfig(); @Expose + @Category(name = "Stranded", desc = "Features for the Stranded game mode.") + public StrandedConfig stranded = new StrandedConfig(); + + @Expose @Category(name = "The Rift", desc = "Features for The Rift dimension.") public RiftConfig rift = new RiftConfig(); |