1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2026-01-27 05:02:47 +00:00

Several performance improvements, monster template and xml updates and

fixed bug while logging-in

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-31 17:05:39 -03:00
parent d72bb75cb0
commit 657b555fe1
3464 changed files with 3539 additions and 3481 deletions

View File

@@ -64,6 +64,7 @@ import com.l2jserver.model.template.NPCTemplate.TalkMetadata;
import com.l2jserver.model.template.TeleportationTemplate.TeleportRestriction;
import com.l2jserver.model.world.Actor.ActorSex;
import com.l2jserver.model.world.npc.controller.BaseNPCController;
import com.l2jserver.model.world.npc.controller.MonsterController;
import com.l2jserver.model.world.npc.controller.NPCController;
import com.l2jserver.model.world.npc.controller.NotImplementedNPCController;
import com.l2jserver.model.world.npc.controller.TeleporterController;
@@ -92,6 +93,8 @@ public class NPCTemplateConverter {
controllers.put("L2Teleporter", TeleporterController.class);
controllers.put("L2CastleTeleporter", TeleporterController.class);
controllers.put("L2Npc", BaseNPCController.class);
controllers.put("L2Monster", MonsterController.class);
controllers.put("L2FlyMonster", MonsterController.class);
Class.forName("com.mysql.jdbc.Driver");
final File target = new File("data/templates");