Dieser Commit ist enthalten in:
Ursprung
a8d68ddd7e
Commit
429d4eba84
@ -39,7 +39,6 @@ public class SchematicCommand extends SWCommand {
|
||||
|
||||
public SchematicCommand() {
|
||||
super("schematic", Bukkit.getPluginManager().getPlugin("Teamserver") == null ? new String[] {"schem", "/schem", "/schematic"} : new String[]{"schem"});
|
||||
setMessage(SchematicSystem.MESSAGE);
|
||||
}
|
||||
|
||||
@Register("help")
|
||||
|
@ -19,17 +19,18 @@
|
||||
|
||||
package de.steamwar.schematicsystem.commands.schematiccommand;
|
||||
|
||||
import de.steamwar.schematicsystem.SchematicSystem;
|
||||
import de.steamwar.schematicsystem.commands.schematiccommand.parts.*;
|
||||
|
||||
public class SchematicCommandInitializer {
|
||||
|
||||
public static void init() {
|
||||
new SchematicCommand();
|
||||
new CheckPart();
|
||||
new MemberPart();
|
||||
new ModifyPart();
|
||||
new SavePart();
|
||||
new SearchPart();
|
||||
new ViewPart();
|
||||
new SchematicCommand().setMessage(SchematicSystem.MESSAGE);
|
||||
new CheckPart().setMessage(SchematicSystem.MESSAGE);
|
||||
new MemberPart().setMessage(SchematicSystem.MESSAGE);
|
||||
new ModifyPart().setMessage(SchematicSystem.MESSAGE);
|
||||
new SavePart().setMessage(SchematicSystem.MESSAGE);
|
||||
new SearchPart().setMessage(SchematicSystem.MESSAGE);
|
||||
new ViewPart().setMessage(SchematicSystem.MESSAGE);
|
||||
}
|
||||
}
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren