1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-10 09:22:49 +00:00

Gatekeeper complete implementation

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-25 15:26:27 -03:00
parent 4a003b21e0
commit f955208c2e
12 changed files with 3550 additions and 366 deletions

View File

@@ -53,7 +53,11 @@ public class NPCServiceImpl extends AbstractService implements NPCService {
*/
private final NPCDAO npcDao;
private final TeleporterController controller = new TeleporterController();
/**
* Temporary only
*/
@Inject
private TeleporterController controller;
@Inject
public NPCServiceImpl(SpawnService spawnService,

View File

@@ -163,6 +163,6 @@ public class XMLTemplateService extends AbstractService implements
@XmlType(namespace = "teleports")
public static class TeleportationTemplateContainer {
@XmlElement(name = "teleport")
private List<TeleportationTemplate> templates;
public List<TeleportationTemplate> templates;
}
}