Fixed summon attacking after BlockActions effect.
This commit is contained in:
parent
cc4e27390a
commit
e480031d11
@ -904,7 +904,7 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
|
||||
}
|
||||
try
|
||||
{
|
||||
if ((target == null) || isAttackingDisabled() || !target.isTargetable())
|
||||
if ((target == null) || (isAttackingDisabled() && !isSummon()) || !target.isTargetable())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -904,7 +904,7 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
|
||||
}
|
||||
try
|
||||
{
|
||||
if ((target == null) || isAttackingDisabled() || !target.isTargetable())
|
||||
if ((target == null) || (isAttackingDisabled() && !isSummon()) || !target.isTargetable())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -904,7 +904,7 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
|
||||
}
|
||||
try
|
||||
{
|
||||
if ((target == null) || isAttackingDisabled() || !target.isTargetable())
|
||||
if ((target == null) || (isAttackingDisabled() && !isSummon()) || !target.isTargetable())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -904,7 +904,7 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
|
||||
}
|
||||
try
|
||||
{
|
||||
if ((target == null) || isAttackingDisabled() || !target.isTargetable())
|
||||
if ((target == null) || (isAttackingDisabled() && !isSummon()) || !target.isTargetable())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -904,7 +904,7 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
|
||||
}
|
||||
try
|
||||
{
|
||||
if ((target == null) || isAttackingDisabled() || !target.isTargetable())
|
||||
if ((target == null) || (isAttackingDisabled() && !isSummon()) || !target.isTargetable())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -904,7 +904,7 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
|
||||
}
|
||||
try
|
||||
{
|
||||
if ((target == null) || isAttackingDisabled() || !target.isTargetable())
|
||||
if ((target == null) || (isAttackingDisabled() && !isSummon()) || !target.isTargetable())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -904,7 +904,7 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
|
||||
}
|
||||
try
|
||||
{
|
||||
if ((target == null) || isAttackingDisabled() || !target.isTargetable())
|
||||
if ((target == null) || (isAttackingDisabled() && !isSummon()) || !target.isTargetable())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -904,7 +904,7 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
|
||||
}
|
||||
try
|
||||
{
|
||||
if ((target == null) || isAttackingDisabled() || !target.isTargetable())
|
||||
if ((target == null) || (isAttackingDisabled() && !isSummon()) || !target.isTargetable())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -904,7 +904,7 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
|
||||
}
|
||||
try
|
||||
{
|
||||
if ((target == null) || isAttackingDisabled() || !target.isTargetable())
|
||||
if ((target == null) || (isAttackingDisabled() && !isSummon()) || !target.isTargetable())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -904,7 +904,7 @@ public abstract class L2Character extends L2Object implements ISkillsHolder, IDe
|
||||
}
|
||||
try
|
||||
{
|
||||
if ((target == null) || isAttackingDisabled() || !target.isTargetable())
|
||||
if ((target == null) || (isAttackingDisabled() && !isSummon()) || !target.isTargetable())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user