summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandext.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/Commandext.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandext.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandext.java b/Essentials/src/com/earth2me/essentials/commands/Commandext.java
new file mode 100644
index 000000000..1313ba5b9
--- /dev/null
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandext.java
@@ -0,0 +1,29 @@
+package com.earth2me.essentials.commands;
+
+import org.bukkit.Server;
+import com.earth2me.essentials.Essentials;
+import com.earth2me.essentials.User;
+import org.bukkit.entity.Player;
+
+public class Commandext extends EssentialsCommand {
+
+ public Commandext() {
+ super("ext");
+ }
+
+ @Override
+ public void run(Server server, Essentials parent, User user, String commandLabel, String[] args) throws Exception {
+ if (args.length < 1) {
+ User.charge(user, this);
+ user.setFireTicks(0);
+ user.sendMessage("§7You extinguished yourself.");
+ return;
+ }
+
+ for (Player p : server.matchPlayer(args[0])) {
+ User.charge(user, this);
+ p.setFireTicks(0);
+ user.sendMessage("§7You extinguished " + p.getDisplayName() + ".");
+ }
+ }
+}