Skip to content

Commit

Permalink
Merge branch 'CustomBeta' into HoppityCallWarning
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidArthurCole authored Aug 26, 2024
2 parents 44df886 + 6f98b29 commit 92ea88f
Show file tree
Hide file tree
Showing 7 changed files with 464 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ import at.hannibal2.skyhanni.features.garden.fortuneguide.FFGuideGUI
import at.hannibal2.skyhanni.features.garden.pests.PestFinder
import at.hannibal2.skyhanni.features.garden.pests.PestProfitTracker
import at.hannibal2.skyhanni.features.garden.visitor.GardenVisitorDropStatistics
import at.hannibal2.skyhanni.features.inventory.caketracker.CakeTracker
import at.hannibal2.skyhanni.features.inventory.chocolatefactory.ChocolateFactoryStrayTracker
import at.hannibal2.skyhanni.features.mining.KingTalismanHelper
import at.hannibal2.skyhanni.features.mining.MineshaftPityDisplay
Expand Down Expand Up @@ -274,6 +275,10 @@ object Commands {
"shresetseacreaturetracker",
"Resets the Sea Creature Tracker",
) { SeaCreatureTracker.resetCommand() }
registerCommand(
"shresetcaketracker",
"Resets the New Year Cake Tracker",
) { CakeTracker.resetCommand() }
registerCommand(
"shresetstrayrabbittracker",
"Resets the Stray Rabbit Tracker",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import at.hannibal2.skyhanni.config.features.itemability.ItemAbilityConfig;
import at.hannibal2.skyhanni.config.features.misc.EstimatedItemValueConfig;
import at.hannibal2.skyhanni.config.features.misc.PocketSackInASackConfig;
import at.hannibal2.skyhanni.features.inventory.caketracker.CakeTrackerConfig;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.Accordion;
import io.github.notenoughupdates.moulconfig.annotations.Category;
Expand Down Expand Up @@ -118,6 +119,11 @@ public class InventoryConfig {
@Accordion
public PageScrollingConfig pageScrolling = new PageScrollingConfig();

@Expose
@ConfigOption(name = "Cake Tracker", desc = "")
@Accordion
public CakeTrackerConfig cakeTracker = new CakeTrackerConfig();

@Expose
@ConfigOption(name = "Item Number", desc = "Showing the item number as a stack size for these items.")
@ConfigEditorDraggableList
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import at.hannibal2.skyhanni.features.garden.pests.PestProfitTracker;
import at.hannibal2.skyhanni.features.garden.pests.VinylType;
import at.hannibal2.skyhanni.features.garden.visitor.VisitorReward;
import at.hannibal2.skyhanni.features.inventory.caketracker.CakeTracker;
import at.hannibal2.skyhanni.features.inventory.chocolatefactory.ChocolateFactoryStrayTracker;
import at.hannibal2.skyhanni.features.inventory.wardrobe.WardrobeAPI;
import at.hannibal2.skyhanni.features.mining.MineshaftPityDisplay;
Expand Down Expand Up @@ -467,6 +468,9 @@ public static class GhostCounter {

}

@Expose
public CakeTracker.Data cakeTracker = new CakeTracker.Data();

@Expose
public PowderTracker.Data powderTracker = new PowderTracker.Data();

Expand Down
Loading

0 comments on commit 92ea88f

Please sign in to comment.