Prevent auto play while skill casting.
This commit is contained in:
parent
d8c8007487
commit
34298cb926
@ -57,6 +57,11 @@ public class AutoPlayTaskManager
|
||||
continue PLAY;
|
||||
}
|
||||
|
||||
if (player.isCastingNow() || (player.getQueuedSkill() != null))
|
||||
{
|
||||
continue PLAY;
|
||||
}
|
||||
|
||||
// Skip thinking.
|
||||
final WorldObject target = player.getTarget();
|
||||
if ((target != null) && target.isMonster())
|
||||
|
@ -57,6 +57,11 @@ public class AutoPlayTaskManager
|
||||
continue PLAY;
|
||||
}
|
||||
|
||||
if (player.isCastingNow() || (player.getQueuedSkill() != null))
|
||||
{
|
||||
continue PLAY;
|
||||
}
|
||||
|
||||
// Skip thinking.
|
||||
final WorldObject target = player.getTarget();
|
||||
if ((target != null) && target.isMonster())
|
||||
|
@ -57,6 +57,11 @@ public class AutoPlayTaskManager
|
||||
continue PLAY;
|
||||
}
|
||||
|
||||
if (player.isCastingNow() || (player.getQueuedSkill() != null))
|
||||
{
|
||||
continue PLAY;
|
||||
}
|
||||
|
||||
// Skip thinking.
|
||||
final WorldObject target = player.getTarget();
|
||||
if ((target != null) && target.isMonster())
|
||||
|
@ -57,6 +57,11 @@ public class AutoPlayTaskManager
|
||||
continue PLAY;
|
||||
}
|
||||
|
||||
if (player.isCastingNow() || (player.getQueuedSkill() != null))
|
||||
{
|
||||
continue PLAY;
|
||||
}
|
||||
|
||||
// Skip thinking.
|
||||
final WorldObject target = player.getTarget();
|
||||
if ((target != null) && target.isMonster())
|
||||
|
Loading…
Reference in New Issue
Block a user