Saber-Factions/src/main/java/com/massivecraft/factions/zcore/CommandVisibility.java
drtshock ddf054330a First implementation of scoreboards.
Boards can be toggled with /f sb. Toggles are persistent in a yml file.
Also fix some small spelling and format things that were really bugging me.
2014-08-05 10:17:27 -05:00

8 lines
454 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.
}