mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-28 06:28:01 +01:00
Finish Machinery new to init (#17334)
* Finish Machinery new to init * fix that --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
co-authored by
Cameron Lennox
parent
f362f6585f
commit
4d36cfdaeb
@@ -6,8 +6,8 @@
|
||||
can_hold = list(/obj/item/forensics/swab)
|
||||
storage_slots = 14
|
||||
|
||||
/obj/item/storage/box/swabs/New()
|
||||
..()
|
||||
/obj/item/storage/box/swabs/Initialize(mapload)
|
||||
. = ..()
|
||||
for(var/i = 1 to storage_slots) // Fill 'er up.
|
||||
new /obj/item/forensics/swab(src)
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
storage_slots = 7
|
||||
can_hold = list(/obj/item/evidencebag)
|
||||
|
||||
/obj/item/storage/box/evidence/New()
|
||||
..()
|
||||
/obj/item/storage/box/evidence/Initialize(mapload)
|
||||
. = ..()
|
||||
for(var/i = 1 to storage_slots)
|
||||
new /obj/item/evidencebag(src)
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
can_hold = list(/obj/item/sample/print)
|
||||
storage_slots = 14
|
||||
|
||||
/obj/item/storage/box/fingerprints/New()
|
||||
..()
|
||||
/obj/item/storage/box/fingerprints/Initialize(mapload)
|
||||
. = ..()
|
||||
for(var/i = 1 to storage_slots)
|
||||
new /obj/item/sample/print(src)
|
||||
|
||||
Reference in New Issue
Block a user