I have a Polish friend who gave me a solution for this issue, all credit goes to @SSnakEE. The ingenuity is as follows. Total thanks to him.
Playable.java
insert to
public boolean canKeepAttacking(Creature target)
{
//if target is flagged keep attacking
if (targetPlayer.getPvpFlag() > 0)
return true;
Recommended Posts