diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-06-15 12:08:32 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-06-15 12:08:32 +0200 |
commit | e28087cf0b1c08c86e02d8f4267ec75c3a5a0a3d (patch) | |
tree | 6df05f14c76455de5a21d0f1a4be675ead17b1b8 /src | |
parent | 54f297c3c27ae66b788b358ef05b3839b544cc52 (diff) | |
download | skyhanni-e28087cf0b1c08c86e02d8f4267ec75c3a5a0a3d.tar.gz skyhanni-e28087cf0b1c08c86e02d8f4267ec75c3a5a0a3d.tar.bz2 skyhanni-e28087cf0b1c08c86e02d8f4267ec75c3a5a0a3d.zip |
Split the outside garden composter empty timer to a separate gui element
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 3 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterDisplay.kt | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index 01d097338..30305c473 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -1089,6 +1089,9 @@ public class Garden { public Position composterDisplayPos = new Position(-363, 13, false, true); @Expose + public Position composterOutsideGardenPos = new Position(-363, 13, false, true); + + @Expose @ConfigOption(name = "Farming Fortune Display", desc = "") @ConfigEditorAccordion(id = 22) public boolean farmingFortune = false; diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterDisplay.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterDisplay.kt index e2f3b6710..2ddcc390e 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterDisplay.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterDisplay.kt @@ -189,7 +189,7 @@ class ComposterDisplay { if (!GardenAPI.inGarden() && config.composterDisplayOutsideGarden) { val list = Collections.singletonList(listOf(NEUItems.getItemStack("BUCKET"), "§b$format")) - config.composterDisplayPos.renderStringsAndItems(list, posLabel = "Composter Display") + config.composterOutsideGardenPos.renderStringsAndItems(list, posLabel = "Composter Outside Garden Display") } } |