From c1fae0995cfb789aca9e6e119e1ebc028c552edb Mon Sep 17 00:00:00 2001
From: dustland <dust.land@outlook.com>
Date: Mon, 29 Apr 2024 15:33:26 +1200
Subject: [PATCH] tweak dust drops items initial

---
 code/modules/mob/death.dm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/code/modules/mob/death.dm b/code/modules/mob/death.dm
index 56ae47b1769..24c7b2cf556 100644
--- a/code/modules/mob/death.dm
+++ b/code/modules/mob/death.dm
@@ -26,6 +26,9 @@
 //Originally created for wizard disintegrate. I've removed the virus code since it's irrelevant here.
 //Dusting robots does not eject the MMI, so it's a bit more powerful than gib() /N
 /mob/proc/dust(anim="dust-m",remains=/obj/effect/decal/cleanable/ash)
+	for(var/obj/item/I in src)
+		src.drop_from_inventory(I)
+
 	death(1)
 	var/atom/movable/overlay/animation = anim
 	monkeyizing = 1
-- 
GitLab