This commit is contained in:
Jesse Boyd 2019-03-31 18:31:16 +11:00
parent 45360f0979
commit 04b9b67c9d
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -246,7 +246,8 @@ public abstract class PlotArea {
this.SCHEMATIC_ON_CLAIM = config.getBoolean("schematic.on_claim");
this.SCHEMATIC_FILE = config.getString("schematic.file");
this.SCHEMATIC_CLAIM_SPECIFY = config.getBoolean("schematic.specify_on_claim");
this.SCHEMATICS = config.getStringList("schematic.schematics");
this.SCHEMATICS = new ArrayList<>(config.getStringList("schematic.schematics"));
this.SCHEMATICS.replaceAll(String::toLowerCase);
this.USE_ECONOMY = config.getBoolean("economy.use") && EconHandler.getEconHandler() != null;
ConfigurationSection priceSection = config.getConfigurationSection("economy.prices");
if (this.USE_ECONOMY) {