Fix reading of 'webpath' by Regions component - was reading its own

config instead of top-level one
This commit is contained in:
Mike Primm 2011-06-20 17:33:01 -05:00
parent e584e3202b
commit 2c3e8fbdc0
2 changed files with 5 additions and 1 deletions

View file

@ -65,7 +65,7 @@ public class RegionsComponent extends ClientComponent {
outputFileName = outputFileName.substring(0, outputFileName.lastIndexOf("."))+".json";
File webWorldPath = new File(this.configuration.getString("webpath", "web")+"/standalone/", outputFileName);
File webWorldPath = new File(plugin.getWebPath()+"/standalone/", outputFileName);
Map<?, ?> regionData = (Map<?, ?>) regionConfig.getProperty(configuration.getString("basenode", "regions"));
if (webWorldPath.isAbsolute())
outputFile = webWorldPath;