Removed readonly from TSPlayer's data field so that it can actually be used

This commit is contained in:
White 2016-05-18 13:03:17 +09:30
parent 457b3d40b3
commit 1a11beded7

View file

@ -357,7 +357,7 @@ namespace TShockAPI
/// <summary>
/// Contains data stored by plugins
/// </summary>
protected ConcurrentDictionary<string, object> data => new ConcurrentDictionary<string, object>();
protected ConcurrentDictionary<string, object> data = new ConcurrentDictionary<string, object>();
/// <summary>
/// Whether the player is a real, human, player on the server.