diff --git a/src/de/steamwar/tutorial/TutorialSystem.java b/src/de/steamwar/tutorial/TutorialSystem.java index 2393f69..bfb64b0 100644 --- a/src/de/steamwar/tutorial/TutorialSystem.java +++ b/src/de/steamwar/tutorial/TutorialSystem.java @@ -19,6 +19,7 @@ package de.steamwar.tutorial; +import de.steamwar.tutorial.commands.TutorialCommand; import de.steamwar.tutorial.listener.Joining; import de.steamwar.tutorial.listener.RateSign; import org.bukkit.plugin.java.JavaPlugin; @@ -36,6 +37,8 @@ public class TutorialSystem extends JavaPlugin { public void onEnable() { new RateSign(); new Joining(); + + new TutorialCommand(); } public static TutorialSystem getPlugin() { diff --git a/src/de/steamwar/tutorial/commands/TutorialCommand.java b/src/de/steamwar/tutorial/commands/TutorialCommand.java new file mode 100644 index 0000000..09aa30e --- /dev/null +++ b/src/de/steamwar/tutorial/commands/TutorialCommand.java @@ -0,0 +1,17 @@ +package de.steamwar.tutorial.commands; + +import de.steamwar.command.SWCommand; +import de.steamwar.comms.packets.ExecuteCommandPacket; +import org.bukkit.entity.Player; + +public class TutorialCommand extends SWCommand { + + public TutorialCommand() { + super("tutorial"); + } + + @Register("rate") + public void rateCommand(Player player) { + new ExecuteCommandPacket(player, "tutorial rate " + System.getProperty("tutorial")).send(player); + } +}