2011-03-22 15:45:41 +01:00
|
|
|
package com.bukkit.mcteam.factions.commands;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
import com.bukkit.mcteam.factions.Factions;
|
|
|
|
|
|
|
|
public class FCommandVersion extends FBaseCommand {
|
|
|
|
|
|
|
|
public FCommandVersion() {
|
2011-03-22 18:48:09 +01:00
|
|
|
aliases = new ArrayList<String>();
|
|
|
|
aliases.add("version");
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
requiredParameters = new ArrayList<String>();
|
|
|
|
optionalParameters = new ArrayList<String>();
|
|
|
|
|
|
|
|
permissions = "";
|
|
|
|
|
|
|
|
senderMustBePlayer = false;
|
|
|
|
|
|
|
|
helpDescription = "Which version are you using?";
|
|
|
|
}
|
|
|
|
|
|
|
|
public void perform() {
|
|
|
|
sendMessage("You are running "+Factions.instance.getDescription().getFullName());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|