diff --git a/SchematicSystem/SchematicSystem_Core/src/SchematicSystem.properties b/SchematicSystem/SchematicSystem_Core/src/SchematicSystem.properties index e72b0f08..491c1444 100644 --- a/SchematicSystem/SchematicSystem_Core/src/SchematicSystem.properties +++ b/SchematicSystem/SchematicSystem_Core/src/SchematicSystem.properties @@ -105,6 +105,7 @@ UTIL_SUBMIT_COLOR_ON=§aReplace pink to team color UTIL_SUBMIT_COLOR_OFF=§cDo not replace pink UTIL_SUBMIT_DIRECT=§eSubmit directly UTIL_SUBMIT_DIRECT_DONE=§aThe Schematic will be reviewed in a timely manner +UTIL_SUBMIT_DIRECT_PLAYABLE=§aYou can now use this Schematic in the arena! Good luck and have fun. UTIL_SUBMIT_EXTEND=§eExtend Schematic UTIL_SUBMIT_EXTEND_DONE=§aThe preparation server is starting UTIL_CHECK_TYPE_NOT_FOUND=§cThe type {0} was not found diff --git a/SchematicSystem/SchematicSystem_Core/src/SchematicSystem_de.properties b/SchematicSystem/SchematicSystem_Core/src/SchematicSystem_de.properties index b019e685..12030a2f 100644 --- a/SchematicSystem/SchematicSystem_Core/src/SchematicSystem_de.properties +++ b/SchematicSystem/SchematicSystem_Core/src/SchematicSystem_de.properties @@ -88,6 +88,7 @@ UTIL_SUBMIT_COLOR_ON=§aPink zu Teamfarbe ersetzen UTIL_SUBMIT_COLOR_OFF=§cPink nicht ersetzen UTIL_SUBMIT_DIRECT=§eDirekt einsenden UTIL_SUBMIT_DIRECT_DONE=§aDie Schematic wird zeitnah überprüft +UTIL_SUBMIT_DIRECT_PLAYABLE=§aDu kannst die Schematic jetzt in der Arena verwenden! Viel Glück und viel Spaß. UTIL_SUBMIT_EXTEND=§eSchematic ausfahren UTIL_SUBMIT_EXTEND_DONE=§aDer Vorbereitungsserver wird gestartet UTIL_INFO_ACTION_REVISIONS_HOVER=§eVersionen anzeigen diff --git a/SchematicSystem/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/schematiccommand/SchematicCommandUtils.java b/SchematicSystem/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/schematiccommand/SchematicCommandUtils.java index e2f6626e..fa9ccb42 100644 --- a/SchematicSystem/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/schematiccommand/SchematicCommandUtils.java +++ b/SchematicSystem/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/schematiccommand/SchematicCommandUtils.java @@ -482,7 +482,7 @@ public class SchematicCommandUtils { SchematicSystem.MESSAGE.send("UTIL_TYPE_EXTEND", player); } else { node.setSchemtype(type.checkType()); - SchematicSystem.MESSAGE.send("UTIL_SUBMIT_DIRECT_DONE", player); + SchematicSystem.MESSAGE.send(type.getManualCheck() ? "UTIL_SUBMIT_DIRECT_DONE" : "UTIL_SUBMIT_DIRECT_PLAYABLE", player); } } } @@ -499,7 +499,7 @@ public class SchematicCommandUtils { }); inv.setItem(7, SWItem.getDye(7), (byte) 7, SchematicSystem.MESSAGE.parse("UTIL_SUBMIT_DIRECT", player), click -> { node.setSchemtype(type.checkType()); - SchematicSystem.MESSAGE.send("UTIL_SUBMIT_DIRECT_DONE", player); + SchematicSystem.MESSAGE.send(type.getManualCheck() ? "UTIL_SUBMIT_DIRECT_DONE" : "UTIL_SUBMIT_DIRECT_PLAYABLE", player); player.closeInventory(); }); inv.setItem(8, SWItem.getDye(10), (byte) 10, SchematicSystem.MESSAGE.parse("UTIL_SUBMIT_EXTEND", player), click -> {