Removes obsolete PhysicsComponent from power prototypes (#1542)

* Removes obsolete PhysicsComponent from wire and power prototypes

* Updates anchorable to use CollidableCOmponent

* Map update

* map update again

* Fixes generators starting unanchored

Co-authored-by: py01 <pyronetics01@gmail.com>
This commit is contained in:
py01
2020-08-08 06:41:12 -06:00
committed by GitHub
parent b4f08811eb
commit 7f0ab2e03b
3 changed files with 1 additions and 17 deletions

View File

@@ -102,7 +102,7 @@ namespace Content.Server.GameObjects.Components
public override void Initialize()
{
base.Initialize();
Owner.EnsureComponent<PhysicsComponent>();
Owner.EnsureComponent<CollidableComponent>();
}
bool IInteractUsing.InteractUsing(InteractUsingEventArgs eventArgs)