Removed readonly from TSPlayer's data field so that it can actually be used
This commit is contained in:
parent
457b3d40b3
commit
1a11beded7
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue