From 156d9b558c991f5d8efaf3c4886e2f3a8c2805c1 Mon Sep 17 00:00:00 2001 From: kingofkosmos Date: Sun, 15 Nov 2015 17:19:07 +0200 Subject: [PATCH] Crossing a glass shard in space without shoes won't hurt and stun the user anymore. --- code/game/objects/items/stacks/sheets/glass.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/stacks/sheets/glass.dm b/code/game/objects/items/stacks/sheets/glass.dm index fc922adb1fb..b2db790d174 100644 --- a/code/game/objects/items/stacks/sheets/glass.dm +++ b/code/game/objects/items/stacks/sheets/glass.dm @@ -326,7 +326,7 @@ ..() /obj/item/weapon/shard/Crossed(mob/AM) - if(istype(AM)) + if(istype(AM) && has_gravity(loc)) playsound(loc, 'sound/effects/glass_step.ogg', 50, 1) if(ishuman(AM)) var/mob/living/carbon/human/H = AM