Remove redundant read-only VV from datafields (#12626)

This commit is contained in:
DrSmugleaf
2022-11-16 20:22:11 +01:00
committed by GitHub
parent fb892cb374
commit 7fbc2608e8
179 changed files with 171 additions and 462 deletions

View File

@@ -18,7 +18,6 @@ namespace Content.Shared.Research.Prototypes
/// <summary>
/// The name this technology will have on user interfaces.
/// </summary>
[ViewVariables]
[DataField("name")]
public string Name
{
@@ -37,7 +36,6 @@ namespace Content.Shared.Research.Prototypes
/// <summary>
/// A short description of the technology.
/// </summary>
[ViewVariables]
[DataField("description")]
public string Description
{
@@ -50,7 +48,6 @@ namespace Content.Shared.Research.Prototypes
/// <summary>
/// The required research points to unlock this technology.
/// </summary>
[ViewVariables]
[DataField("requiredPoints")]
public int RequiredPoints { get; }
@@ -63,7 +60,6 @@ namespace Content.Shared.Research.Prototypes
/// <summary>
/// A list of recipe IDs this technology unlocks.
/// </summary>
[ViewVariables]
[DataField("unlockedRecipes", customTypeSerializer:typeof(PrototypeIdListSerializer<LatheRecipePrototype>))]
public List<string> UnlockedRecipes { get; } = new();
}