Skip to content

Commit

Permalink
= AutoSprayonator - bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
onixiya1337 committed Mar 2, 2024
1 parent 39f57b9 commit d990c08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ baseGroup=com.jelly.farmhelperv2
mcVersion=1.8.9
modid=farmhelperv2
modName=FarmHelper
version=2.4.5-pre18
version=2.4.5-pre19
shouldRelease=true
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public void onTickShouldEnable(TickEvent.ClientTickEvent event) {
if (!MacroHandler.getInstance().isMacroToggled()) return;
if (GameStateHandler.getInstance().getServerClosingSeconds().isPresent()) return;
if (!GameStateHandler.getInstance().inGarden()) return;
if (sprayState != AUTO_SPRAYONATOR_STATE.WAITING_FOR_PLOT) return;
if (sprayState != AUTO_SPRAYONATOR_STATE.NONE) return;
sprayItem = SPRAYONATOR_ITEM.values()[FarmHelperConfig.sprayonatorType];

System.out.println("Has sprayonator: " + hasSprayonator());
Expand Down

0 comments on commit d990c08

Please sign in to comment.