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:
Kashargul
2025-03-16 03:57:48 -04:00
committed by GitHub
co-authored by Cameron Lennox
parent f362f6585f
commit 4d36cfdaeb
116 changed files with 486 additions and 528 deletions
+6 -6
View File
@@ -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)