2012-01-28 18:56:51 +01:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
2019-02-17 14:30:25 +01:00
|
|
|
public class CmdFactionsPowerboost extends FactionsCommand
|
2012-01-28 18:56:51 +01:00
|
|
|
{
|
2015-05-06 17:04:35 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// FIELDS
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2019-02-17 14:30:25 +01:00
|
|
|
public CmdFactionsPowerboostPlayer cmdFactionsPowerBoostPlayer = new CmdFactionsPowerboostPlayer();
|
|
|
|
public CmdFactionsPowerboostFaction cmdFactionsPowerBoostFaction = new CmdFactionsPowerboostFaction();
|
2015-05-06 17:04:35 +02:00
|
|
|
|
2013-11-11 09:31:04 +01:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2019-02-17 14:30:25 +01:00
|
|
|
public CmdFactionsPowerboost()
|
2012-01-28 18:56:51 +01:00
|
|
|
{
|
2017-03-15 18:22:17 +01:00
|
|
|
// Child
|
|
|
|
this.addChild(this.cmdFactionsPowerBoostPlayer);
|
|
|
|
this.addChild(this.cmdFactionsPowerBoostFaction);
|
2012-01-28 18:56:51 +01:00
|
|
|
}
|
2013-11-11 09:31:04 +01:00
|
|
|
|
2012-01-28 18:56:51 +01:00
|
|
|
}
|