Starting coding for PlayerProfiles class to store aliases, personal muting, tag, and nickname

This commit is contained in:
cerevisiae
2010-12-02 00:17:42 -06:00
parent a0552c1f31
commit 76cadca12f
2 changed files with 204 additions and 0 deletions

View File

@ -10,6 +10,7 @@ import java.util.logging.Logger;
//Author: nos, trapalice, cerevisiae
//=====================================================================
public class vMinecraftCommands{
//Log output
protected static final Logger log = Logger.getLogger("Minecraft");
static final int EXIT_FAIL = 0,
@ -539,6 +540,19 @@ public class vMinecraftCommands{
//if(cur)
return EXIT_SUCCESS;
}
//=====================================================================
//Function: privateMessage(/msg)
//Input: long time: The time to reverse to.
//Output: int: Exit Code
//Use: List all invulnerable players
//=====================================================================
public static int privateMessage(Player player, String[] message)
{
long curTime = etc.getServer().getRelativeTime();
//if(cur)
return EXIT_SUCCESS;
}
}
//=====================================================================