diff --git a/code/game/machinery/vending_types.dm b/code/game/machinery/vending_types.dm
index 98e9b37699f..4ac0f0cc9fa 100644
--- a/code/game/machinery/vending_types.dm
+++ b/code/game/machinery/vending_types.dm
@@ -921,7 +921,7 @@
/obj/item/reagent_containers/ladle = 4,
/obj/item/storage/toolbox/lunchbox/nt = 6,
/obj/item/reagent_containers/glass/rag = 8,
- /obj/item/evidencebag/plasticbag = 6,
+ /obj/item/evidencebag/plasticbag = 20,
/obj/item/tray = 12,
)
contraband = list(
diff --git a/code/modules/cooking/plasticbag.dm b/code/modules/cooking/plasticbag.dm
index 7ae6bc578d9..64e011c153d 100644
--- a/code/modules/cooking/plasticbag.dm
+++ b/code/modules/cooking/plasticbag.dm
@@ -2,7 +2,7 @@
name = "resealable plastic bag"
desc = "An Idris Quiklok plastic bag."
-/obj/item/evidencebag/plasticbag/attack_self(mob/user as mob)
+/obj/item/evidencebag/plasticbag/attack_self(mob/user)
if(contents.len)
var/obj/item/I = contents[1]
user.visible_message("[user] takes \the [I] out of \the [src].", SPAN_NOTICE("You take \the [I] out of \the [src]."),\
@@ -22,11 +22,11 @@
/obj/item/storage/box/plasticbag
name = "resealable plastic bag box"
- desc = "A box advertising its dazzling contents. Six resealable Idris Incorporated brand Quiklok bags!"
+ desc = "A box advertising its dazzling contents: 20 resealable Idris Incorporated brand Quiklok bags!"
illustration = "evidence"
- storage_slots = 6
+ storage_slots = 20
/obj/item/storage/box/plasticbag/fill()
..()
- for(var/i=0;i