Skip to content

Commit

Permalink
= AutoSprayonator - bug fixes again
Browse files Browse the repository at this point in the history
  • Loading branch information
onixiya1337 authored Mar 2, 2024
2 parents d990c08 + 1c551ed commit de0af6f
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-pre19
version=2.4.5-pre20
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.NONE) return;
if (sprayState != AUTO_SPRAYONATOR_STATE.NONE && sprayState != AUTO_SPRAYONATOR_STATE.WAITING_FOR_PLOT) return;
sprayItem = SPRAYONATOR_ITEM.values()[FarmHelperConfig.sprayonatorType];

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

0 comments on commit de0af6f

Please sign in to comment.