From 4274a875db9275aa71a4518bc643bc9b6856f971 Mon Sep 17 00:00:00 2001 From: kevinz000 Date: Sun, 1 Oct 2017 13:21:23 -0700 Subject: [PATCH 1/2] Ashwalker tendrils now drop everything on victims before consuming (#31177) * Update ash_walker_den.dm * Update ash_walker_den.dm --- code/modules/ruins/objects_and_mobs/ash_walker_den.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/ruins/objects_and_mobs/ash_walker_den.dm b/code/modules/ruins/objects_and_mobs/ash_walker_den.dm index 5e0f43c7a9..1cc5b482f0 100644 --- a/code/modules/ruins/objects_and_mobs/ash_walker_den.dm +++ b/code/modules/ruins/objects_and_mobs/ash_walker_den.dm @@ -25,6 +25,9 @@ if(H.stat) visible_message("Serrated tendrils eagerly pull [H] to [src], tearing the body apart as its blood seeps over the eggs.") playsound(get_turf(src),'sound/magic/demon_consume.ogg', 100, 1) + for(var/obj/item/W in H) + if(!H.dropItemToGround(W)) + qdel(W) if(ismegafauna(H)) meat_counter += 20 else