Partial kudzu fix (#10854)

This commit is contained in:
Leon Friedrich
2022-08-26 01:34:05 +12:00
committed by GitHub
parent c65d1c51ce
commit 35475bac55
5 changed files with 84 additions and 36 deletions

View File

@@ -0,0 +1,12 @@
using Robust.Shared.GameStates;
using Robust.Shared.Serialization;
namespace Content.Shared.Movement.Components;
/// <summary>
/// Exists just to listen to a single event. What a life.
/// </summary>
[NetworkedComponent, RegisterComponent] // must be networked to properly predict adding & removal
public sealed class SlowedByContactComponent : Component
{
}