From 51d07afdc368fd9bca687d4d18ebd9117a965d2b Mon Sep 17 00:00:00 2001 From: Anewbe Date: Sun, 7 May 2017 14:02:43 -0500 Subject: [PATCH] Dunno how it compiled last time --- code/game/objects/explosion.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/explosion.dm b/code/game/objects/explosion.dm index c47a93ede6e..97cae609107 100644 --- a/code/game/objects/explosion.dm +++ b/code/game/objects/explosion.dm @@ -48,8 +48,9 @@ proc/explosion(turf/epicenter, devastation_range, heavy_impact_range, light_impa // to all distanced mobs play a different sound for(var/mob/M in world) if(M.z == epicenter.z) if(!(M in close)) // check if the mob can hear - if(M.ear_deaf <= 0 || !M.ear_deaf) if(!istype(M.loc,/turf/space)) - M << 'sound/effects/explosionfar.ogg' + if(M.ear_deaf <= 0 || !M.ear_deaf) + if(!istype(M.loc,/turf/space)) + M << 'sound/effects/explosionfar.ogg' if(adminlog) message_admins("Explosion with [shaped ? "shaped" : "non-shaped"] size ([devastation_range], [heavy_impact_range], [light_impact_range]) in area [epicenter.loc.name] ([epicenter.x],[epicenter.y],[epicenter.z]) (JMP)")