From a05e29b27e47b04d3f2d08cb52afcc224a88a933 Mon Sep 17 00:00:00 2001 From: Incoming Date: Thu, 10 Dec 2015 17:13:40 -0500 Subject: [PATCH] Supermatter swords can no longer consume space itself to spam radiation at people. --- code/game/objects/items/weapons/melee/misc.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/weapons/melee/misc.dm b/code/game/objects/items/weapons/melee/misc.dm index d04f0e138b7..fa407036813 100644 --- a/code/game/objects/items/weapons/melee/misc.dm +++ b/code/game/objects/items/weapons/melee/misc.dm @@ -205,6 +205,7 @@ consume_turf(target) /obj/item/weapon/melee/supermatter_sword/proc/consume_turf(turf/T) + if(istype(T, /turf/space)) return //Can't void the void, baby! playsound(T, 'sound/effects/supermatter.ogg', 50, 1) T.visible_message("\The [T] smacks into \the [src] and rapidly flashes to ash.",\ "You hear a loud crack as you are washed with a wave of heat.")