RNG timers for IEDs + small tweaks (#22099)

This commit is contained in:
Nemanja
2023-12-02 21:21:51 -05:00
committed by GitHub
parent e5b294af21
commit e2eb80c0fe
7 changed files with 55 additions and 3 deletions

View File

@@ -25,6 +25,7 @@ using Content.Shared.Mobs;
using Content.Shared.Mobs.Components;
using Content.Shared.Weapons.Ranged.Events;
using Robust.Shared.Audio.Systems;
using Robust.Shared.Random;
namespace Content.Server.Explosion.EntitySystems
{
@@ -62,6 +63,7 @@ namespace Content.Server.Explosion.EntitySystems
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly SharedTransformSystem _transformSystem = default!;
[Dependency] private readonly RadioSystem _radioSystem = default!;
[Dependency] private readonly IRobustRandom _random = default!;
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
public override void Initialize()