Effects.cfg parser

This commit is contained in:
2024-07-23 20:47:39 -05:00
parent 9ad5f239b0
commit e12a8a3c7c
5 changed files with 175 additions and 1 deletions
+4 -1
View File
@@ -9,6 +9,7 @@
package engine.server.world;
import engine.ConfigParsing.EffectsParser;
import engine.InterestManagement.RealmMap;
import engine.InterestManagement.WorldGrid;
import engine.db.archive.DataWarehouse;
@@ -76,7 +77,7 @@ public class WorldServer {
super();
}
public static void main(String[] args) {
public static void main(String[] args) throws IOException {
WorldServer worldServer;
@@ -93,6 +94,8 @@ public class WorldServer {
return;
}
EffectsParser.init();
try {
worldServer = new WorldServer();