2011-04-08 15:51:07 +02:00
|
|
|
package org.mcteam.factions.commands;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-03-23 17:39:56 +01:00
|
|
|
import org.bukkit.command.CommandSender;
|
2011-04-08 15:51:07 +02:00
|
|
|
import org.mcteam.factions.Factions;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
public class FCommandVersion extends FBaseCommand {
|
|
|
|
|
|
|
|
public FCommandVersion() {
|
2011-03-22 18:48:09 +01:00
|
|
|
aliases.add("version");
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
senderMustBePlayer = false;
|
|
|
|
|
|
|
|
helpDescription = "Which version are you using?";
|
|
|
|
}
|
|
|
|
|
2011-03-23 17:39:56 +01:00
|
|
|
@Override
|
|
|
|
public boolean hasPermission(CommandSender sender) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
public void perform() {
|
|
|
|
sendMessage("You are running "+Factions.instance.getDescription().getFullName());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|