From 7887557c2583ee2298c6e777ef9c9791c3171f87 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Sat, 2 May 2015 18:02:06 +0000 Subject: [PATCH] Fixed geodata path problem. --- trunk/java/com/l2jserver/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/java/com/l2jserver/Config.java b/trunk/java/com/l2jserver/Config.java index 0303cc0475..54a0fe3ad5 100644 --- a/trunk/java/com/l2jserver/Config.java +++ b/trunk/java/com/l2jserver/Config.java @@ -2899,7 +2899,7 @@ public final class Config DEBUG_PATH = geoData.getBoolean("DebugPath", false); FORCE_GEODATA = geoData.getBoolean("ForceGeoData", true); COORD_SYNCHRONIZE = geoData.getInt("CoordSynchronize", -1); - GEODATA_PATH = Paths.get(geoData.getString("GeoDataPath", "geodata")); + GEODATA_PATH = Paths.get(Config.DATAPACK_ROOT.getPath() + "/" + geoData.getString("GeoDataPath", "geodata")); TRY_LOAD_UNSPECIFIED_REGIONS = geoData.getBoolean("TryLoadUnspecifiedRegions", true); GEODATA_REGIONS = new HashMap<>(); for (int regionX = L2World.TILE_X_MIN; regionX <= L2World.TILE_X_MAX; regionX++)