Add logout command and pos command. Closes #872 and Closes #887

This commit is contained in:
Zack Piispanen 2015-03-25 21:17:11 -04:00
parent 42a505e18f
commit 015cf61b77
3 changed files with 83 additions and 0 deletions

View file

@ -35,6 +35,9 @@ namespace TShockAPI
[Description("User can login in game")]
public static readonly string canlogin = "tshock.account.login";
[Description("User can logout in game")]
public static readonly string canlogout = "tshock.account.logout";
[Description("User can change password in game")]
public static readonly string canchangepassword = "tshock.account.changepassword";
@ -225,6 +228,9 @@ namespace TShockAPI
[Description("User can teleport to tile positions.")]
public static readonly string tppos = "tshock.tp.pos";
[Description("User can get the position of players.")]
public static readonly string getpos = "tshock.tp.getpos";
[Description("User can teleport to an NPC.")]
public static readonly string tpnpc = "tshock.tp.npc";