Removal of MoveToLocation archer check after latest changes.

This commit is contained in:
MobiusDevelopment 2020-08-28 10:10:03 +00:00
parent fc38fff8d8
commit 0667ad1f10
2 changed files with 0 additions and 20 deletions

View File

@ -5380,16 +5380,6 @@ public abstract class Creature extends WorldObject implements ISkillsHolder
getActingPlayer().sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// Fix archer bug with movement/hittask
if (isAttackingNow())
{
final ItemInstance rhand = getActingPlayer().getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND);
if (((rhand != null) && (rhand.getItemType() == WeaponType.BOW)))
{
return;
}
}
}
// Get the Move Speed of the Creature

View File

@ -5428,16 +5428,6 @@ public abstract class Creature extends WorldObject implements ISkillsHolder
getActingPlayer().sendPacket(ActionFailed.STATIC_PACKET);
return;
}
// Fix archer bug with movement/hittask
if (isAttackingNow())
{
final ItemInstance rhand = getActingPlayer().getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND);
if (((rhand != null) && (rhand.getItemType() == WeaponType.BOW)))
{
return;
}
}
}
// Get the Move Speed of the Creature