17 lines
383 B
Java
17 lines
383 B
Java
|
package com.massivecraft.factions.cmd;
|
||
|
|
||
|
import com.massivecraft.factions.cmd.type.TypeMPlayer;
|
||
|
|
||
|
public class CmdFactionsPowerBoostPlayer extends CmdFactionsPowerBoostAbstract
|
||
|
{
|
||
|
// -------------------------------------------- //
|
||
|
// CONSTRUCT
|
||
|
// -------------------------------------------- //
|
||
|
|
||
|
public CmdFactionsPowerBoostPlayer()
|
||
|
{
|
||
|
super(TypeMPlayer.get(), "player");
|
||
|
}
|
||
|
|
||
|
}
|