package com.massivecraft.factions.cmd; import com.massivecraft.factions.Perm; public class CmdCapeGet extends CmdCapeAbstract { public CmdCapeGet() { this.aliases.add("get"); this.permission = Perm.CAPE_GET.node; } @Override public void perform() { if (currentCape == null) { msg("%s has no cape set.", capeFaction.describeTo(fme, true)); } else { msg("The cape of %s is \"%s\".", capeFaction.describeTo(fme, true), currentCape); } } }