Rename CmdCape --> CmdCapeAbstract
This commit is contained in:
@ -7,12 +7,12 @@ import org.bukkit.command.CommandSender;
|
||||
import com.massivecraft.factions.FPerm;
|
||||
import com.massivecraft.factions.Faction;
|
||||
|
||||
public abstract class CapeCommand extends FCommand
|
||||
public abstract class CmdCapeAbstract extends FCommand
|
||||
{
|
||||
public Faction capeFaction;
|
||||
public String currentCape;
|
||||
|
||||
public CapeCommand()
|
||||
public CmdCapeAbstract()
|
||||
{
|
||||
this.optionalArgs.put("faction", "your");
|
||||
|
@ -2,7 +2,7 @@ package com.massivecraft.factions.cmd;
|
||||
|
||||
import com.massivecraft.factions.Perm;
|
||||
|
||||
public class CmdCapeGet extends CapeCommand
|
||||
public class CmdCapeGet extends CmdCapeAbstract
|
||||
{
|
||||
public CmdCapeGet()
|
||||
{
|
||||
|
@ -4,7 +4,7 @@ import com.massivecraft.factions.Perm;
|
||||
import com.massivecraft.factions.integration.SpoutFeatures;
|
||||
import com.massivecraft.factions.util.RelationUtil;
|
||||
|
||||
public class CmdCapeRemove extends CapeCommand
|
||||
public class CmdCapeRemove extends CmdCapeAbstract
|
||||
{
|
||||
|
||||
public CmdCapeRemove()
|
||||
|
@ -6,7 +6,7 @@ import com.massivecraft.factions.Perm;
|
||||
import com.massivecraft.factions.integration.SpoutFeatures;
|
||||
import com.massivecraft.factions.util.RelationUtil;
|
||||
|
||||
public class CmdCapeSet extends CapeCommand
|
||||
public class CmdCapeSet extends CmdCapeAbstract
|
||||
{
|
||||
|
||||
public CmdCapeSet()
|
||||
|
Reference in New Issue
Block a user