Magic Hunter stats now check for treasure hunter

This commit is contained in:
nossr50
2019-01-27 20:36:55 -08:00
parent b2b623505d
commit 7e34e87bc0
2 changed files with 5 additions and 5 deletions

View File

@ -38,7 +38,6 @@ import java.util.*;
public class FishingManager extends SkillManager {
private final long FISHING_COOLDOWN_SECONDS = 1000L;
private int fishingTries = 0;
private long fishingTimestamp = 0L;
private Location fishingTarget;
private Item fishingCatch;
@ -73,6 +72,9 @@ public class FishingManager extends SkillManager {
Location targetLocation = targetBlock.getLocation();
boolean sameTarget = (fishingTarget != null && fishingTarget.equals(targetLocation));
if(!sameTarget)
fishingTarget = targetLocation;
return hasFished || sameTarget;
}
@ -258,8 +260,6 @@ public class FishingManager extends SkillManager {
* @param target The {@link LivingEntity} affected by the ability
*/
public void shakeCheck(LivingEntity target) {
fishingTries--; // Because autoclicking to shake is OK.
if (RandomChanceUtil.checkRandomChanceExecutionSuccess(getPlayer(), SubSkillType.FISHING_SHAKE, true)) {
List<ShakeTreasure> possibleDrops = Fishing.findPossibleDrops(target);