From d0c1f42db3e0a25e9c62d86d1b1a27325ef74b28 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Sat, 21 Jan 2012 00:32:43 -0700 Subject: [PATCH] Fixed icetails --- TShockAPI/TSPlayer.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TShockAPI/TSPlayer.cs b/TShockAPI/TSPlayer.cs index c9346ffc..70790df4 100644 --- a/TShockAPI/TSPlayer.cs +++ b/TShockAPI/TSPlayer.cs @@ -75,7 +75,7 @@ namespace TShockAPI public PlayerData PlayerData; public bool RequiresPassword; public bool SilentKickInProgress; - public List IceTiles { get; set; } + public List IceTiles; public bool RealPlayer @@ -184,6 +184,7 @@ namespace TShockAPI TilesCreated = new Dictionary(); Index = index; Group = new Group(TShock.Config.DefaultGuestGroupName); + IceTiles = new List(); } protected TSPlayer(String playerName)