Skip to content

Commit

Permalink
CRITICAL FAILSAFE UPDATE!
Browse files Browse the repository at this point in the history
WARNING! You MUST update FarmHelper JDA Dependency mod (Discord Integration) to the latest version to make it work! Do this before restarting the game.

Failsafes:
+ Dirt Check - improved by checking whether the admin removed the blocks immediately after touching them

Toggle Sprint mods:
= Fixed an issue with Toggle Sprint mods not working properly

Webhook:
+ Implemented retrying mechanism so you don't miss notifications

JDA:
= Updated dependencies to fix rare errors
  • Loading branch information
onixiya1337 committed May 17, 2024
1 parent 30de22d commit 30d3d83
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.6.22-pre6
version=2.7.0
shouldRelease=true
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public void onTick(TickEvent.ClientTickEvent e) {
FarmHelperConfig.enableRemoteControl = false;
return;
}
else if (!FarmHelper.isJDAVersionCorrect) {
else if (!FarmHelper.isJDAVersionCorrect && FarmHelperConfig.enableRemoteControl) {
FarmHelperConfig.enableRemoteControl = false;
LogUtils.sendError("[Remote Control] Farm Helper JDA Dependency is outdated! Please update it and try again. Disabling remote control...");
LogUtils.sendNotification("Farm Helper", "Farm Helper JDA Dependency is outdated! Please update it and try again. Disabling remote control...");
Expand Down

0 comments on commit 30d3d83

Please sign in to comment.