Tweaks the Kitchen's Plastic Bag Amount (#14681)

This commit is contained in:
SleepyGemmy
2022-08-21 19:41:21 +02:00
committed by GitHub
parent df35df04ea
commit 254753bbf9
3 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -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(
+4 -4
View File
@@ -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("<b>[user]</b> 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<storage_slots,i++)
for(var/i=0;i < storage_slots, i++)
new /obj/item/evidencebag/plasticbag(src)
+6
View File
@@ -0,0 +1,6 @@
author: SleepyGemmy
delete-after: True
changes:
- bugfix: "Tweaks the kitchen's plastic bag box to hold 20 instead of 6 plastic bags."