Slipping tweaks + remove EffectBlocker (#4955)
* Slipping tweaks + remove EffectBlocker * mfw failed merge conflict resolution Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
using System;
|
||||
using Content.Shared.EffectBlocker;
|
||||
using Content.Shared.Sound;
|
||||
using Robust.Shared.Analyzers;
|
||||
using Robust.Shared.GameObjects;
|
||||
@@ -13,7 +12,7 @@ namespace Content.Shared.Standing
|
||||
{
|
||||
[Friend(typeof(StandingStateSystem))]
|
||||
[RegisterComponent, NetworkedComponent]
|
||||
public sealed class StandingStateComponent : Component, IEffectBlocker
|
||||
public sealed class StandingStateComponent : Component
|
||||
{
|
||||
public override string Name => "StandingState";
|
||||
|
||||
@@ -25,8 +24,6 @@ namespace Content.Shared.Standing
|
||||
[DataField("standing")]
|
||||
public bool Standing { get; set; } = true;
|
||||
|
||||
public bool CanFall() => Standing;
|
||||
|
||||
public override ComponentState GetComponentState(ICommonSession player)
|
||||
{
|
||||
return new StandingComponentState(Standing);
|
||||
|
||||
Reference in New Issue
Block a user