diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-13 05:46:08 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-13 05:46:08 +0200 |
| commit | 3d06b454d2cb2b92766dd3967ec0c97d2df17bf3 (patch) | |
| tree | 96fe64c0559934daf3d592d29e1d46055d550826 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
| parent | 274bd74d397da5b43b900d0f766ce7825e079061 (diff) | |
| download | SkyHanni-3d06b454d2cb2b92766dd3967ec0c97d2df17bf3.tar.gz SkyHanni-3d06b454d2cb2b92766dd3967ec0c97d2df17bf3.tar.bz2 SkyHanni-3d06b454d2cb2b92766dd3967ec0c97d2df17bf3.zip | |
added composter empty time
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index 12e9929bf..96e71a779 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -25,7 +25,9 @@ import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowParticleFinder; import at.hannibal2.skyhanni.features.event.diana.SoopyGuessBurrow; import at.hannibal2.skyhanni.features.fishing.*; import at.hannibal2.skyhanni.features.garden.*; +import at.hannibal2.skyhanni.features.garden.composter.ComposterDisplay; import at.hannibal2.skyhanni.features.garden.composter.ComposterInventoryNumbers; +import at.hannibal2.skyhanni.features.garden.composter.GardenComposterInventoryFeatures; import at.hannibal2.skyhanni.features.inventory.*; import at.hannibal2.skyhanni.features.itemabilities.FireVeilWandParticles; import at.hannibal2.skyhanni.features.itemabilities.abilitycooldown.ItemAbilityCooldown; @@ -136,10 +138,11 @@ public class SkyHanniMod { loadModule(UpdateManager.INSTANCE); loadModule(new CropAccessoryData()); loadModule(new MayorElectionData()); + loadModule(new GardenComposterUpgradesData()); // APIs loadModule(new BazaarApi()); - loadModule(new GardenAPI()); + loadModule(GardenAPI.INSTANCE); loadModule(new CollectionAPI()); // features |
