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)