Fix mob state error (#21431)

This commit is contained in:
Leon Friedrich
2023-11-08 12:30:05 +11:00
committed by GitHub
parent 33f211bdf7
commit ac25dd85fc
2 changed files with 7 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ using Content.Shared.Mobs.Components;
using Content.Shared.Standing;
using Robust.Shared.GameStates;
using Robust.Shared.Physics.Systems;
using Robust.Shared.Timing;
namespace Content.Shared.Mobs.Systems;
@@ -16,6 +17,7 @@ public partial class MobStateSystem : EntitySystem
[Dependency] private readonly StandingStateSystem _standing = default!;
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
[Dependency] private readonly ILogManager _logManager = default!;
[Dependency] private readonly IGameTiming _timing = default!;
private ISawmill _sawmill = default!;
public override void Initialize()