diff --git a/CommonCore b/CommonCore index e0c1d1c..e664c6c 160000 --- a/CommonCore +++ b/CommonCore @@ -1 +1 @@ -Subproject commit e0c1d1c2e2c4359fc706e9b58268a0b93873a669 +Subproject commit e664c6cf4e3e9a056918cf15030c247e7bc6fe19 diff --git a/SpigotCore_Main/src/de/steamwar/sql/SQLWrapperImpl.java b/SpigotCore_Main/src/de/steamwar/sql/SQLWrapperImpl.java index c6d833d..7428574 100644 --- a/SpigotCore_Main/src/de/steamwar/sql/SQLWrapperImpl.java +++ b/SpigotCore_Main/src/de/steamwar/sql/SQLWrapperImpl.java @@ -52,12 +52,14 @@ public class SQLWrapperImpl implements SQLWrapper { String material = config.getString("Schematic.Material", "STONE_BUTTON"); if(!config.getStringList("CheckQuestions").isEmpty()) { - checktype = new SchematicType("C" + type, "C" + shortcut, SchematicType.Type.CHECK_TYPE, null, material); + checktype = new SchematicType("C" + type, "C" + shortcut, SchematicType.Type.CHECK_TYPE, null, material, true); tmpTypes.add(checktype); tmpFromDB.put(checktype.toDB(), checktype); } - SchematicType current = new SchematicType(type, shortcut, config.isConfigurationSection("Server") ? SchematicType.Type.FIGHT_TYPE : SchematicType.Type.NORMAL, checktype, material); + boolean manualCheck = config.getBoolean("Schematic.ManualCheck", true); + + SchematicType current = new SchematicType(type, shortcut, config.isConfigurationSection("Server") ? SchematicType.Type.FIGHT_TYPE : SchematicType.Type.NORMAL, checktype, material, manualCheck); tmpTypes.add(current); tmpFromDB.put(type.toLowerCase(), current); }