diff --git a/src/p_local.h b/src/p_local.h
index 08c1288477..d1a81a9925 100644
--- a/src/p_local.h
+++ b/src/p_local.h
@@ -453,6 +453,7 @@ enum EDmgFlags
 	DMG_NO_PROTECT = 256,
 	DMG_USEANGLE = 512,
 	DMG_NO_PAIN = 1024,
+	DMG_EXPLOSION = 2048,
 };
 
 
diff --git a/src/p_map.cpp b/src/p_map.cpp
index a44d37c72f..58c0bb706d 100644
--- a/src/p_map.cpp
+++ b/src/p_map.cpp
@@ -6177,7 +6177,7 @@ int P_RadiusAttack(AActor *bombspot, AActor *bombsource, int bombdamage, int bom
 				{
 					//[MC] Don't count actors saved by buddha if already at 1 health.
 					int prehealth = thing->health;
-					newdam = P_DamageMobj(thing, bombspot, bombsource, damage, bombmod);
+					newdam = P_DamageMobj(thing, bombspot, bombsource, damage, bombmod, DMG_EXPLOSION);
 					if (thing->health < prehealth)	count++;
 				}
 				else if (thing->player == NULL && (!(flags & RADF_NOIMPACTDAMAGE) && !(thing->flags7 & MF7_DONTTHRUST)))
@@ -6229,7 +6229,7 @@ int P_RadiusAttack(AActor *bombspot, AActor *bombsource, int bombdamage, int bom
 			{ // OK to damage; target is in direct path
 				//[MC] Don't count actors saved by buddha if already at 1 health.
 				int prehealth = thing->health;
-				int newdam = P_DamageMobj(thing, bombspot, bombsource, damage, bombmod);
+				int newdam = P_DamageMobj(thing, bombspot, bombsource, damage, bombmod, DMG_EXPLOSION);
 				P_TraceBleed(newdam > 0 ? newdam : damage, thing, bombspot);
 				if (thing->health < prehealth)	count++;
 			}
diff --git a/wadsrc/static/zscript/constants.txt b/wadsrc/static/zscript/constants.txt
index 156763a27e..dc394a0d20 100644
--- a/wadsrc/static/zscript/constants.txt
+++ b/wadsrc/static/zscript/constants.txt
@@ -939,6 +939,7 @@ enum EDmgFlags
 	DMG_NO_PROTECT = 256,
 	DMG_USEANGLE = 512,
 	DMG_NO_PAIN = 1024,
+	DMG_EXPLOSION = 2048,
 }
 
 enum EReplace
diff --git a/wadsrc/static/zscript/hexen/blastradius.txt b/wadsrc/static/zscript/hexen/blastradius.txt
index 3dd355b7cf..0f50948922 100644
--- a/wadsrc/static/zscript/hexen/blastradius.txt
+++ b/wadsrc/static/zscript/hexen/blastradius.txt
@@ -89,7 +89,7 @@ extend class Actor
 		if (victim.bTouchy)
 		{ // Touchy objects die when blasted
 			victim.bArmed = false; // Disarm
-			victim.DamageMobj(self, self, victim.health, 'Melee', DMG_FORCED);
+			victim.DamageMobj(self, self, victim.health, 'Melee', DMG_FORCED|DMG_EXPLOSION);
 		}
 	}