Check schematic name length
Dieser Commit ist enthalten in:
Ursprung
227f297e79
Commit
bc4d354a80
@ -164,6 +164,11 @@ public class SchematicCommand implements CommandExecutor {
|
||||
if(invalidSchemName(player, args[1]))
|
||||
return;
|
||||
|
||||
if(args[1].length() > 64){
|
||||
player.sendMessage(SchematicSystem.PREFIX + "§cDer Name der Schematic ist zu lang");
|
||||
return;
|
||||
}
|
||||
|
||||
Schematic schematic = Schematic.getSchemFromDB(args[1], player.getUniqueId());
|
||||
if(schematic != null && !schematic.getSchemType().writeable()) {
|
||||
player.sendMessage(SchematicSystem.PREFIX + "§cDu darfst diese Schematic nicht überschreiben");
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren