From 23b337c3cf2a6a668dbbf2861fcf732c4cc7f5ff Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Tue, 28 Jan 2025 17:19:52 +0100 Subject: [PATCH] Fixes evidence bag not reverting to tiny size after dumping its contents out (#89228) ## About The Pull Request Closes #89217 ## Changelog :cl: fix: Fixed evidence bag not reverting to tiny size after dumping its contents out /:cl: --- code/modules/detectivework/evidence.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/detectivework/evidence.dm b/code/modules/detectivework/evidence.dm index 59e2f0feb86..030d2e6c25a 100644 --- a/code/modules/detectivework/evidence.dm +++ b/code/modules/detectivework/evidence.dm @@ -62,9 +62,7 @@ SIGNAL_HANDLER if(!atom_storage.get_total_weight()) - return - - update_weight_class(WEIGHT_CLASS_TINY) + update_weight_class(WEIGHT_CLASS_TINY) /obj/item/evidencebag/attack_self(mob/user) if(!atom_storage.get_total_weight())