am big dumdum pls no shed

This commit is contained in:
Paul
2021-08-18 23:22:22 +02:00
parent b651ee93d0
commit 77d7d3c383

View File

@@ -9,6 +9,7 @@ using Content.Shared.Temperature;
using Robust.Server.GameObjects; using Robust.Server.GameObjects;
using Robust.Shared.Audio; using Robust.Shared.Audio;
using Robust.Shared.GameObjects; using Robust.Shared.GameObjects;
using Robust.Shared.IoC;
using Robust.Shared.Player; using Robust.Shared.Player;
namespace Content.Server.Light.EntitySystems namespace Content.Server.Light.EntitySystems
@@ -16,12 +17,12 @@ namespace Content.Server.Light.EntitySystems
public class MatchstickSystem : EntitySystem public class MatchstickSystem : EntitySystem
{ {
private HashSet<MatchstickComponent> _litMatches = new(); private HashSet<MatchstickComponent> _litMatches = new();
private AtmosphereSystem _atmosphereSystem = default!; [Dependency]
private readonly AtmosphereSystem _atmosphereSystem = default!;
public override void Initialize() public override void Initialize()
{ {
base.Initialize(); base.Initialize();
_atmosphereSystem = Get<AtmosphereSystem>();
SubscribeLocalEvent<MatchstickComponent, InteractUsingEvent>(OnInteractUsing); SubscribeLocalEvent<MatchstickComponent, InteractUsingEvent>(OnInteractUsing);
} }