AFK Fishing protection

This commit is contained in:
nossr50
2019-01-26 14:25:01 -08:00
parent 49a91617f0
commit 22c5280d4e
3 changed files with 10 additions and 1 deletions

View File

@ -72,7 +72,8 @@ public class FishingManager extends SkillManager {
Location targetLocation = targetBlock.getLocation();
boolean sameTarget = (fishingTarget != null && fishingTarget.equals(targetLocation));
return hasFished && sameTarget;
return hasFished || sameTarget;
}
public boolean canIceFish(Block block) {