|
@@ -44,7 +44,7 @@ import org.bukkit.util.Vector;
|
|
import java.util.*;
|
|
import java.util.*;
|
|
|
|
|
|
public class FishingManager extends SkillManager {
|
|
public class FishingManager extends SkillManager {
|
|
- public static final int FISHING_ROD_CAST_CD_MILLISECONDS = 200;
|
|
|
|
|
|
+ public static final int FISHING_ROD_CAST_CD_MILLISECONDS = 100;
|
|
public static final int OVERFISH_LIMIT = 4;
|
|
public static final int OVERFISH_LIMIT = 4;
|
|
private final long FISHING_COOLDOWN_SECONDS = 1000L;
|
|
private final long FISHING_COOLDOWN_SECONDS = 1000L;
|
|
|
|
|
|
@@ -74,7 +74,7 @@ public class FishingManager extends SkillManager {
|
|
{
|
|
{
|
|
long currentTime = System.currentTimeMillis();
|
|
long currentTime = System.currentTimeMillis();
|
|
//Only track spam casting if the fishing hook is fresh
|
|
//Only track spam casting if the fishing hook is fresh
|
|
- if(currentTime > fishHookSpawnTimestamp + 500)
|
|
|
|
|
|
+ if(currentTime > fishHookSpawnTimestamp + 1000)
|
|
return;
|
|
return;
|
|
|
|
|
|
if(currentTime < fishingRodCastTimestamp + FISHING_ROD_CAST_CD_MILLISECONDS)
|
|
if(currentTime < fishingRodCastTimestamp + FISHING_ROD_CAST_CD_MILLISECONDS)
|