From 182b2715d542d40bf02e6f29166ee1f64911f5e4 Mon Sep 17 00:00:00 2001 From: MadmanMartian <30557196+MadmanMartian@users.noreply.github.com> Date: Fri, 22 Mar 2019 20:15:24 +0000 Subject: [PATCH] Fixes not being able to hold guns inside the evidence bag (#22109) Can now just DUMP IT all out on the floor with evidence bags Evidence bags only try to pick up one thing at a time --- code/modules/detectivework/evidence.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/detectivework/evidence.dm b/code/modules/detectivework/evidence.dm index f0c98a27c5b..611bdb0eea6 100644 --- a/code/modules/detectivework/evidence.dm +++ b/code/modules/detectivework/evidence.dm @@ -7,7 +7,10 @@ icon_state = "evidenceobj" item_state = "" use_to_pickup = TRUE + allow_quick_empty = TRUE + collection_mode = FALSE w_class = W_CLASS_TINY + fits_max_w_class = W_CLASS_MEDIUM storage_slots = 1 /obj/item/weapon/storage/evidencebag/update_icon()