Changes for prototype load parallelization (#13066)
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
584921b423
commit
a323671984
@@ -14,8 +14,6 @@ namespace Content.Server.Storage.Components
|
||||
[Access(typeof(SecretStashSystem))]
|
||||
public sealed class SecretStashComponent : Component
|
||||
{
|
||||
private string _secretPartName = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Max item size that can be fitted into secret stash.
|
||||
/// </summary>
|
||||
@@ -27,11 +25,7 @@ namespace Content.Server.Storage.Components
|
||||
/// If empty string, will replace it with entity name in init.
|
||||
/// </summary>
|
||||
[DataField("secretPartName", readOnly: true)]
|
||||
public string SecretPartName
|
||||
{
|
||||
get => _secretPartName;
|
||||
set => _secretPartName = Loc.GetString(value);
|
||||
}
|
||||
public string SecretPartName { get; set; } = "";
|
||||
|
||||
/// <summary>
|
||||
/// Container used to keep secret stash item.
|
||||
|
||||
Reference in New Issue
Block a user