public static void spawnArtifacts(Castle castle)
{
for(SiegeSpawn sp : _artefactSpawnList.get(castle.getId()))
{
L2ArtefactInstance art = new L2ArtefactInstance(IdFactory.getInstance().getNextId(), NpcTable.getTemplate(sp.getNpcId()));
art.setCurrentHpMp(art.getMaxHp(), art.getMaxMp(), true);
art.setHeading(sp.getLoc().h);
art.spawnMe(sp.getLoc().changeZ(50));
castle.getSiege().addArtifact(art);
}
}