Sync with L2jServer HighFive Nov 14th 2015.
This commit is contained in:
@@ -147,11 +147,11 @@ public class L2FortSiegeGuardAI extends L2CharacterAI implements Runnable
|
||||
if ((target != null) && target.isInvul())
|
||||
{
|
||||
// However EffectInvincible requires to check GMs specially
|
||||
if ((target instanceof L2PcInstance) && target.isGM())
|
||||
if (target.isPlayer() && target.isGM())
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if ((target instanceof L2Summon) && ((L2Summon) target).getOwner().isGM())
|
||||
if (target.isSummon() && ((L2Summon) target).getOwner().isGM())
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user