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