aboutsummaryrefslogtreecommitdiff
path: root/src/net/brysonsteck/Resurrection/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/brysonsteck/Resurrection/commands')
-rw-r--r--src/net/brysonsteck/Resurrection/commands/CommandAbout.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/net/brysonsteck/Resurrection/commands/CommandAbout.java b/src/net/brysonsteck/Resurrection/commands/CommandAbout.java
new file mode 100644
index 0000000..ac95f20
--- /dev/null
+++ b/src/net/brysonsteck/Resurrection/commands/CommandAbout.java
@@ -0,0 +1,20 @@
+package net.brysonsteck.Resurrection.commands;
+
+import org.bukkit.command.Command;
+import org.bukkit.command.CommandExecutor;
+import org.bukkit.command.CommandSender;
+import org.bukkit.entity.Player;
+
+public class CommandAbout implements CommandExecutor {
+ @Override
+ public boolean onCommand(CommandSender commandSender, Command command, String s, String[] strings) {
+ String aboutMessage = "This is the about message for Resurrection.";
+ if (commandSender instanceof Player) {
+ Player p = (Player) commandSender;
+ p.sendMessage(aboutMessage);
+ } else {
+ System.out.println(aboutMessage);
+ }
+ return true;
+ }
+}