96989ee653
This command allows someone to see all the perms held by a rank/rel/player/faction
16 lines
571 B
Java
16 lines
571 B
Java
package com.massivecraft.factions.cmd;
|
|
|
|
public class CmdFactionsPerm extends FactionsCommand
|
|
{
|
|
// -------------------------------------------- //
|
|
// FIELDS
|
|
// -------------------------------------------- //
|
|
|
|
CmdFactionsPermList cmdFactionsPermList = new CmdFactionsPermList();
|
|
CmdFactionsPermShow cmdFactionsPermShow = new CmdFactionsPermShow();
|
|
CmdFactionsPermView cmdFactionsPermView = new CmdFactionsPermView();
|
|
CmdFactionsPermViewall cmdFactionsPermViewall = new CmdFactionsPermViewall();
|
|
CmdFactionsPermSet cmdFactionsPermSet = new CmdFactionsPermSet();
|
|
|
|
}
|