diff --git a/Content.Shared/Foldable/SharedFoldableSystem.cs b/Content.Shared/Foldable/SharedFoldableSystem.cs index 52cca6ee7a..dce19d6e82 100644 --- a/Content.Shared/Foldable/SharedFoldableSystem.cs +++ b/Content.Shared/Foldable/SharedFoldableSystem.cs @@ -45,9 +45,6 @@ public abstract class SharedFoldableSystem : EntitySystem /// public virtual void SetFolded(EntityUid uid, FoldableComponent component, bool folded) { - if (component.IsFolded == folded) - return; - component.IsFolded = folded; Dirty(component); Appearance.SetData(uid, FoldedVisuals.State, folded);