Handle Towny 0.74.0 configuration format

This commit is contained in:
Mike Primm 2011-08-30 13:28:28 +08:00 committed by mikeprimm
parent 85a564aa45
commit 56faab71e2

View File

@ -32,7 +32,12 @@ public class TownyConfigHandler {
}
Configuration tcfg = new Configuration(cfgfile);
tcfg.load();
String tbsize = tcfg.getNode("town").getString("town_block_size", "16");
org.bukkit.util.config.ConfigurationNode townnode = tcfg.getNode("town");
String tbsize = "16";
if(townnode != null)
tbsize = townnode.getString("town_block_size", "16");
else
tbsize = tcfg.getString("town_block_size", "16");
try {
townblocksize = Integer.valueOf(tbsize);
} catch (NumberFormatException nfx) {