aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorMax <max.bodifee@gmail.com>2024-05-17 02:15:09 -0700
committerGitHub <noreply@github.com>2024-05-17 11:15:09 +0200
commit467048e077446db815a148d9d0a886d17f3dff66 (patch)
tree423cd6e28c0f63ace446aa56d47ae88ee8274f27 /src/main/java/at/hannibal2/skyhanni/config
parentd0d601984ece1185a3a15c78819c3d35c132e036 (diff)
downloadskyhanni-467048e077446db815a148d9d0a886d17f3dff66.tar.gz
skyhanni-467048e077446db815a148d9d0a886d17f3dff66.tar.bz2
skyhanni-467048e077446db815a148d9d0a886d17f3dff66.zip
Fix: FF Guide GUI not displaying because of new farming content (#1817)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java3
2 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
index 647e0dbe6..b8fa95d85 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -378,6 +378,10 @@ object Commands {
"Toggles receiving the 12 fortune from pumpkins"
) { CaptureFarmingGear.reversePumpkinFortune() }
registerCommand(
+ "shcocoabeans",
+ "Toggles receiving the 12 fortune from cocoa beans"
+ ) { CaptureFarmingGear.reverseCocoaBeansFortune() }
+ registerCommand(
"shrepostatus",
"Shows the status of all the mods constants"
) { SkyHanniMod.repo.displayRepoStatus(false) }
diff --git a/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java b/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java
index a533edcdc..f08ffddd7 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java
@@ -346,6 +346,9 @@ public class ProfileSpecificStorage {
public boolean pumpkinFortune = false;
@Expose
+ public boolean cocoaBeansFortune = false;
+
+ @Expose
public Map<FarmingItems, ItemStack> farmingItems = new HashMap<>();
}