Bullets no longer open doors.

This commit is contained in:
Pieter-Jan Briers
2019-03-20 15:02:19 +01:00
parent 75614db5ce
commit 8b694b1899

View File

@@ -66,6 +66,12 @@ namespace Content.Server.GameObjects
return;
}
// Only open when bumped by mobs.
if (!msg.Entity.HasComponent(typeof(SpeciesComponent)))
{
return;
}
Open();
break;
}