Partial sync with L2jServer HighFive Nov 6th 2015.

This commit is contained in:
MobiusDev
2015-11-07 01:14:51 +00:00
parent 4964c24da9
commit 57dcdb065d
107 changed files with 1331 additions and 266 deletions

View File

@ -454,4 +454,19 @@ public final class L2Weapon extends L2Item
caster.sendPacket(sm);
}
}
public boolean isRange()
{
return isBow() || isCrossBow();
}
public boolean isBow()
{
return _type == WeaponType.BOW;
}
public boolean isCrossBow()
{
return _type == WeaponType.CROSSBOW;
}
}