From 4d7a1f80925773fc41a8bfb7e85d0bc275354e24 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 2 Oct 2021 11:47:52 +1000 Subject: [PATCH] whoops (#4732) --- Content.Shared/Damage/DamageableComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Damage/DamageableComponent.cs b/Content.Shared/Damage/DamageableComponent.cs index 3493c7f3cc..52b77226f6 100644 --- a/Content.Shared/Damage/DamageableComponent.cs +++ b/Content.Shared/Damage/DamageableComponent.cs @@ -86,7 +86,7 @@ namespace Content.Shared.Damage // Radiation should really just be a damage group instead of a list of types. DamageSpecifier damage = new(); - foreach (var typeID in ExplosionDamageTypeIDs) + foreach (var typeID in RadiationDamageTypeIDs) { damage.DamageDict.Add(typeID, damageValue); }