Fix airlocks being opened by anything that bumps into them.

- Adds DoorBumpOpener component.
This commit is contained in:
Vera Aguilera Puerto
2021-10-01 13:47:38 +02:00
parent e3139ef41b
commit 883cbf40b2
8 changed files with 29 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
using Robust.Shared.GameObjects;
namespace Content.Server.Doors.Components
{
[RegisterComponent]
public class DoorBumpOpenerComponent : Component
{
public override string Name => "DoorBumpOpener";
}
}