Disable suffocation damage temporarily

This commit is contained in:
DrSmugleaf
2020-08-19 15:54:45 +02:00
committed by GitHub
parent 1292adb001
commit cd1afb6582

View File

@@ -213,7 +213,7 @@ namespace Content.Server.GameObjects.Components.Metabolism
if (Suffocating && if (Suffocating &&
Owner.TryGetComponent(out IDamageableComponent damageable)) Owner.TryGetComponent(out IDamageableComponent damageable))
{ {
damageable.ChangeDamage(DamageClass.Airloss, _suffocationDamage, false); // damageable.ChangeDamage(DamageClass.Airloss, _suffocationDamage, false);
} }
} }