mirror of
https://github.com/MassiveCraft/Factions.git
synced 2024-11-09 03:49:57 +01:00
10 lines
450 B
Java
10 lines
450 B
Java
package com.massivecraft.factions.zcore;
|
|
|
|
public enum CommandVisibility
|
|
{
|
|
VISIBLE, // Visible commands are visible to anyone. Even those who don't have permission to use it or is of invalid sender type.
|
|
SECRET, // Secret commands are visible only to those who can use the command. These commands are usually some kind of admin commands.
|
|
INVISIBLE, // Invisible commands are invisible to everyone, even those who can use the command.
|
|
;
|
|
}
|