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>
|
/// <summary>
|
||||||
/// Contains data stored by plugins
|
/// Contains data stored by plugins
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected ConcurrentDictionary<string, object> data => new ConcurrentDictionary<string, object>();
|
protected ConcurrentDictionary<string, object> data = new ConcurrentDictionary<string, object>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Whether the player is a real, human, player on the server.
|
/// Whether the player is a real, human, player on the server.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue