Moved all vanilla commands into Bukkit

By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot
2011-09-03 04:37:23 +01:00
parent b1dae4a0a8
commit 715dcf90c8
27 changed files with 1038 additions and 10 deletions

View File

@@ -30,4 +30,18 @@ public interface OfflinePlayer extends ServerOperator {
* @param banned true if banned
*/
public void setBanned(boolean banned);
/**
* Checks if this player is whitelisted or not
*
* @return true if whitelisted
*/
public boolean isWhitelisted();
/**
* Sets if this player is whitelisted or not
*
* @param value true if whitelisted
*/
public void setWhitelisted(boolean value);
}