2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-10-08 22:03:44 +02:00
|
|
|
import com.massivecraft.factions.P;
|
2011-10-09 18:35:39 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
|
2011-10-09 20:10:19 +02:00
|
|
|
public class CmdVersion extends FCommand
|
2011-10-09 18:35:39 +02:00
|
|
|
{
|
2011-10-09 20:10:19 +02:00
|
|
|
public CmdVersion()
|
2011-10-09 18:35:39 +02:00
|
|
|
{
|
|
|
|
this.aliases.add("version");
|
2011-03-22 18:48:09 +01:00
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
//this.requiredArgs.add("");
|
|
|
|
//this.optionalArgs.put("", "");
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-10-09 21:57:43 +02:00
|
|
|
this.permission = Permission.VERSION.node;
|
|
|
|
this.disableOnLock = false;
|
2011-10-09 18:35:39 +02:00
|
|
|
|
|
|
|
senderMustBePlayer = false;
|
|
|
|
senderMustBeMember = false;
|
|
|
|
senderMustBeModerator = false;
|
|
|
|
senderMustBeAdmin = false;
|
2011-03-23 17:39:56 +01:00
|
|
|
}
|
2011-10-09 18:35:39 +02:00
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-10-09 18:35:39 +02:00
|
|
|
public void perform()
|
|
|
|
{
|
2011-10-10 13:40:24 +02:00
|
|
|
msg("<i>You are running "+P.p.getDescription().getFullName());
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
}
|