Fix compiler warnings.

This commit is contained in:
Pieter-Jan Briers
2020-11-11 01:48:54 +01:00
parent 0918e14827
commit 9e36ef2202
14 changed files with 8 additions and 16 deletions

View File

@@ -38,8 +38,8 @@ namespace Content.Server.GameObjects.Components.Singularity
[Dependency] private readonly IEntityManager _entityManager = default!;
[Dependency] private readonly IRobustRandom _robustRandom = default!;
[ComponentDependency] private AppearanceComponent? _appearance;
[ComponentDependency] private AccessReader? _accessReader;
[ComponentDependency] private AppearanceComponent? _appearance = default;
[ComponentDependency] private AccessReader? _accessReader = default;
public override string Name => "Emitter";