Changed the TSPlayer class.

This commit is contained in:
high 2011-06-14 16:54:30 -04:00
parent 17b2ed7eea
commit c3bf304c0c
5 changed files with 53 additions and 58 deletions

View file

@ -71,16 +71,16 @@ namespace TShockAPI
public bool Run(string msg, TSPlayer ply, List<string> parms)
{
if (!ply.group.HasPermission(permission))
if (!ply.Group.HasPermission(permission))
{
return false;
}
CommandArgs args = new CommandArgs();
args.Message = msg;
args.PlayerX = (int)ply.GetPlayer().position.X;
args.PlayerY = (int)ply.GetPlayer().position.Y;
args.PlayerID = ply.GetPlayerID();
args.PlayerX = (int)ply.Player.position.X;
args.PlayerY = (int)ply.Player.position.Y;
args.PlayerID = ply.Index;
args.Parameters = parms;
command(args);
@ -94,7 +94,7 @@ namespace TShockAPI
public bool CanRun(TSPlayer ply)
{
if (!ply.group.HasPermission(permission))
if (!ply.Group.HasPermission(permission))
{
return false;
}