diff --git a/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs b/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs index e3f72fb3db..d8c52b018c 100644 --- a/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs +++ b/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs @@ -66,6 +66,12 @@ namespace Content.Server.GameObjects return; } + // Only open when bumped by mobs. + if (!msg.Entity.HasComponent(typeof(SpeciesComponent))) + { + return; + } + Open(); break; }