Fixed creature follow task initial delay.

This commit is contained in:
MobiusDevelopment
2020-03-30 23:57:18 +00:00
parent dff067c91e
commit 755e00e30e
18 changed files with 36 additions and 0 deletions

View File

@ -121,11 +121,13 @@ public class CreatureFollowTaskManager
public void addNormalFollow(Creature creature, int range)
{
follow(creature, range);
NORMAL_FOLLOW_CREATURES.putIfAbsent(creature, range);
}
public void addAttackFollow(Creature creature, int range)
{
follow(creature, range);
ATTACK_FOLLOW_CREATURES.putIfAbsent(creature, range);
}