Fixed icetails

This commit is contained in:
Lucas Nicodemus 2012-01-21 00:32:43 -07:00
parent 0918675965
commit d0c1f42db3

View file

@ -75,7 +75,7 @@ namespace TShockAPI
public PlayerData PlayerData; public PlayerData PlayerData;
public bool RequiresPassword; public bool RequiresPassword;
public bool SilentKickInProgress; public bool SilentKickInProgress;
public List<Point> IceTiles { get; set; } public List<Point> IceTiles;
public bool RealPlayer public bool RealPlayer
@ -184,6 +184,7 @@ namespace TShockAPI
TilesCreated = new Dictionary<Vector2, TileData>(); TilesCreated = new Dictionary<Vector2, TileData>();
Index = index; Index = index;
Group = new Group(TShock.Config.DefaultGuestGroupName); Group = new Group(TShock.Config.DefaultGuestGroupName);
IceTiles = new List<Point>();
} }
protected TSPlayer(String playerName) protected TSPlayer(String playerName)