diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs index 721d1687aa..51ab16bc36 100644 --- a/Content.Server/Projectiles/ProjectileSystem.cs +++ b/Content.Server/Projectiles/ProjectileSystem.cs @@ -66,8 +66,7 @@ namespace Content.Server.Projectiles } // Damaging it can delete it - if (!EntityManager.GetComponent(otherEntity).EntityDeleted && - EntityManager.HasComponent(otherEntity)) + if (!Deleted(otherEntity) && HasComp(otherEntity)) { var direction = args.OurFixture.Body.LinearVelocity.Normalized; _cameraRecoil.KickCamera(otherEntity, direction);