mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-18 19:39:42 +01:00
Tweaks the Kitchen's Plastic Bag Amount (#14681)
This commit is contained in:
@@ -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(
|
||||
|
||||
@@ -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)
|
||||
@@ -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."
|
||||
Reference in New Issue
Block a user