Enable nullability in Content.Server (#3685)
This commit is contained in:
@@ -3,9 +3,7 @@ using System.Linq;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.IoC;
|
||||
using Robust.Shared.Maths;
|
||||
using Robust.Shared.Prototypes;
|
||||
using Robust.Shared.Random;
|
||||
using Robust.Shared.Serialization;
|
||||
using Robust.Shared.Serialization.Manager.Attributes;
|
||||
using Robust.Shared.ViewVariables;
|
||||
|
||||
@@ -22,7 +20,7 @@ namespace Content.Server.GameObjects.Components.Disposal
|
||||
/// </summary>
|
||||
[ViewVariables]
|
||||
[DataField("degrees")]
|
||||
private List<Angle> _degrees;
|
||||
private List<Angle> _degrees = new();
|
||||
|
||||
public override string Name => "DisposalJunction";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user