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

@@ -28,7 +28,7 @@ namespace Content.Server.RatKing
/// <summary>
/// The action for the Domain ability
/// </summary>
[ViewVariables, DataField("actionDomain", required: true)]
[DataField("actionDomain", required: true)]
public InstantAction ActionDomain = new();
/// <summary>
@@ -40,7 +40,7 @@ namespace Content.Server.RatKing
/// <summary>
/// How many moles of Miasma are released after one us of Domain
/// </summary>
[ViewVariables, DataField("molesMiasmaPerDomain")]
[DataField("molesMiasmaPerDomain")]
public float MolesMiasmaPerDomain = 100f;
}
};