Files
tbd-station-14/Content.Server/GameObjects/Components/Movement/NoSlipComponent.cs
ike709 203a835264 Emergent Sanitation Gameplay (#1378)
* Emergent Sanitation Gameplay

* Fix the map

* Address review

* Mention if it's slippery in the description
2020-07-11 23:49:54 +02:00

14 lines
338 B
C#

using Robust.Shared.GameObjects;
using Content.Shared.GameObjects.EntitySystems;
namespace Content.Server.GameObjects.Components.Movement
{
[RegisterComponent]
public class NoSlipComponent : Component, IEffectBlocker
{
public override string Name => "NoSlip";
bool IEffectBlocker.CanSlip() => false;
}
}