diff --git a/Content.Client/IgnoredComponents.cs b/Content.Client/IgnoredComponents.cs index 3da41e9fbb..bc2fb00fb0 100644 --- a/Content.Client/IgnoredComponents.cs +++ b/Content.Client/IgnoredComponents.cs @@ -7,7 +7,6 @@ namespace Content.Client { "Anchorable", "AmmoBox", - "Breakable", "Pickaxe", "Interactable", "CloningPod", diff --git a/Content.Server/GameObjects/Components/Damage/BreakableComponent.cs b/Content.Server/GameObjects/Components/Damage/BreakableComponent.cs deleted file mode 100644 index e7b5d3f120..0000000000 --- a/Content.Server/GameObjects/Components/Damage/BreakableComponent.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Robust.Shared.GameObjects; - -namespace Content.Server.GameObjects.Components.Damage -{ - [RegisterComponent] - public class BreakableComponent : Component - { - public override string Name => "Breakable"; - } -}