* Emergent Sanitation Gameplay * Fix the map * Address review * Mention if it's slippery in the description
14 lines
338 B
C#
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;
|
|
}
|
|
}
|