Sync with L2jServer HighFive Mar 25th 2015.

This commit is contained in:
MobiusDev
2015-03-25 06:48:51 +00:00
parent e0c66b1412
commit 82606870c0
194 changed files with 2619 additions and 2869 deletions

View File

@ -148,7 +148,7 @@ public final class SiegeGuardManager
int hiredCount = 0, hiredMax = MercTicketManager.getInstance().getMaxAllowedMerc(_castle.getResidenceId());
boolean isHired = (getCastle().getOwnerId() > 0) ? true : false;
loadSiegeGuard();
for (L2Spawn spawn : getSiegeGuardSpawn())
for (L2Spawn spawn : _siegeGuardSpawn)
{
if (spawn != null)
{
@ -175,7 +175,7 @@ public final class SiegeGuardManager
*/
public void unspawnSiegeGuard()
{
for (L2Spawn spawn : getSiegeGuardSpawn())
for (L2Spawn spawn : _siegeGuardSpawn)
{
if ((spawn != null) && (spawn.getLastSpawn() != null))
{
@ -184,7 +184,7 @@ public final class SiegeGuardManager
}
}
getSiegeGuardSpawn().clear();
_siegeGuardSpawn.clear();
}
/**