1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-11 01:32:57 +00:00

Fixed cryptography issue preventing connection to the game

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-17 23:03:47 -03:00
parent 8b5a601ea4
commit 230e28a775
18 changed files with 44 additions and 43 deletions

View File

@@ -18,7 +18,7 @@ package com.l2jserver;
import com.google.inject.AbstractModule;
import com.google.inject.Module;
import com.l2jserver.db.dao.DAOModuleMySQL5;
import com.l2jserver.db.dao.MySQL5DAOModule;
import com.l2jserver.model.id.factory.IDFactoryModule;
import com.l2jserver.service.ServiceModule;
@@ -32,6 +32,6 @@ public class GameServerModule extends AbstractModule {
protected void configure() {
install(new ServiceModule());
install(new IDFactoryModule());
install(new DAOModuleMySQL5());
install(new MySQL5DAOModule());
}
}