Skip to content

Commit

Permalink
fix: fix strange things happening on second crit
Browse files Browse the repository at this point in the history
  • Loading branch information
ThereDrD0 committed Jan 14, 2025
1 parent ad879ff commit cc4b615
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
using Robust.Shared.Audio;
using Robust.Shared.GameStates;

namespace Content.Shared._Sunrise.CritHeartbeat;
namespace Content.Server._Sunrise.CritHeartbeat;

[RegisterComponent, NetworkedComponent]
[RegisterComponent]
public sealed partial class CritHeartbeatComponent : Component
{
[DataField]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using Content.Shared.Mobs;
using Robust.Server.Audio;
using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems;

namespace Content.Shared._Sunrise.CritHeartbeat;
namespace Content.Server._Sunrise.CritHeartbeat;

public sealed class CritHeartbeatSystem : EntitySystem
{
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly AudioSystem _audio = default!;

public override void Initialize()
{
Expand Down

0 comments on commit cc4b615

Please sign in to comment.