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

Chat packet implementation

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-18 00:15:58 -03:00
parent 230e28a775
commit 857bf311bc
16 changed files with 687 additions and 24 deletions

View File

@@ -21,6 +21,7 @@ import com.l2jserver.service.blowfish.BlowfishKeygenService;
import com.l2jserver.service.cache.CacheService;
import com.l2jserver.service.configuration.ConfigurationService;
import com.l2jserver.service.database.DatabaseService;
import com.l2jserver.service.game.chat.ChatService;
import com.l2jserver.service.game.scripting.ScriptingService;
import com.l2jserver.service.game.template.TemplateService;
import com.l2jserver.service.network.NetworkService;
@@ -43,6 +44,8 @@ public class L2JGameServerMain {
serviceManager.start(ScriptingService.class);
serviceManager.start(TemplateService.class);
serviceManager.start(ChatService.class);
serviceManager.start(BlowfishKeygenService.class);
serviceManager.start(NetworkService.class);
} catch (Exception e) {