From 004d4c94327cd7a825a506859468c912207a2113 Mon Sep 17 00:00:00 2001 From: ryannathans Date: Wed, 12 Jan 2022 21:27:15 +1100 Subject: [PATCH] fix GE regression path was resolving as "null" --- .../main/kotlin/rs09/game/system/config/ServerConfigParser.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/Server/src/main/kotlin/rs09/game/system/config/ServerConfigParser.kt b/Server/src/main/kotlin/rs09/game/system/config/ServerConfigParser.kt index 4c3f18b75..5a8b48d7d 100644 --- a/Server/src/main/kotlin/rs09/game/system/config/ServerConfigParser.kt +++ b/Server/src/main/kotlin/rs09/game/system/config/ServerConfigParser.kt @@ -98,6 +98,7 @@ object ServerConfigParser { ServerConstants.HOME_LOCATION = parseLocation(data.getString("world.home_location")) ServerConstants.START_LOCATION = parseLocation(data.getString("world.new_player_location")) ServerConstants.DAILY_RESTART = data.getBoolean("world.daily_restart") + ServerConstants.GRAND_EXCHANGE_DATA_PATH = data.getPath("paths.eco_data") }