Fix every BuckleComponent subscribing to EventBus when buckled (#2504)

This commit is contained in:
Víctor Aguilera Puerto
2020-11-06 12:38:24 +01:00
committed by GitHub
parent 60dd0de96f
commit 6a469508ca
2 changed files with 19 additions and 6 deletions

View File

@@ -2,6 +2,8 @@
using Content.Server.GameObjects.EntitySystems.Click;
using JetBrains.Annotations;
using Robust.Server.GameObjects.EntitySystems;
using Robust.Shared.GameObjects;
using Robust.Shared.GameObjects.Components.Transform;
using Robust.Shared.GameObjects.Systems;
namespace Content.Server.GameObjects.EntitySystems
@@ -15,6 +17,22 @@ namespace Content.Server.GameObjects.EntitySystems
UpdatesAfter.Add(typeof(InteractionSystem));
UpdatesAfter.Add(typeof(InputSystem));
EntityManager.EventBus.SubscribeEvent<MoveEvent>(EventSource.Local, this, MoveEvent);
}
public override void Shutdown()
{
base.Shutdown();
EntityManager.EventBus.UnsubscribeEvent<MoveEvent>(EventSource.Local, this);
}
private void MoveEvent(MoveEvent ev)
{
if (ev.Sender.TryGetComponent(out BuckleComponent buckle))
{
buckle.OnMoveEvent(ev);
}
}
public override void Update(float frameTime)