2014-10-13 15:14:34 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
2015-10-21 19:35:41 +02:00
|
|
|
import com.massivecraft.factions.cmd.type.TypeFaction;
|
2015-05-06 17:04:35 +02:00
|
|
|
|
2014-10-13 15:14:34 +02:00
|
|
|
public abstract class CmdFactionsSetXSimple extends CmdFactionsSetX
|
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2014-11-19 10:30:44 +01:00
|
|
|
public CmdFactionsSetXSimple(boolean claim)
|
2014-10-13 15:14:34 +02:00
|
|
|
{
|
2014-11-19 10:30:44 +01:00
|
|
|
// Super
|
|
|
|
super(claim);
|
|
|
|
|
2015-10-21 19:35:41 +02:00
|
|
|
// Parameters
|
2014-11-19 10:30:44 +01:00
|
|
|
if (claim)
|
|
|
|
{
|
2015-10-21 19:35:41 +02:00
|
|
|
this.addParameter(TypeFaction.get(), "faction", "you");
|
2014-11-19 10:30:44 +01:00
|
|
|
this.setFactionArgIndex(0);
|
|
|
|
}
|
2014-10-13 15:14:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|