Skip to content

Commit

Permalink
[MIRROR] print 5 cable coils instead of 1 in lathes (#2775) (#3578)
Browse files Browse the repository at this point in the history
* print 5 cable coils instead of 1 in lathes (#83601)

## About The Pull Request
What the title says.
## Why It's Good For The Game
It is incredibly tedious to get a large amount of cables from lathes,
considering you need a lot most of the time (especially in engineering),
it should be printing way more than one piece of cable.
## Changelog
:cl: grungussuss
qol: lathes will now print cables coils in packs of 5
/:cl:

* print 5 cable coils instead of 1 in lathes

---------

Co-authored-by: NovaBot <[email protected]>
Co-authored-by: grungussuss <[email protected]>
Co-authored-by: NovaBot13 <[email protected]>
  • Loading branch information
4 people authored Jun 2, 2024
1 parent 35cd306 commit 1dab45b
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_ENGINEERING,
)
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE



/datum/design/tscanner
name = "T-Ray Scanner"
id = "tscanner"
Expand Down Expand Up @@ -153,11 +154,11 @@
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE

/datum/design/cable_coil
name = "Cable Coil"
name = "Cable (x5)"
id = "cable_coil"
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE
materials = list(/datum/material/iron = SMALL_MATERIAL_AMOUNT*0.1, /datum/material/glass = SMALL_MATERIAL_AMOUNT*0.1)
build_path = /obj/item/stack/cable_coil
materials = list(/datum/material/iron = SMALL_MATERIAL_AMOUNT*0.5, /datum/material/glass = SMALL_MATERIAL_AMOUNT*0.5)
build_path = /obj/item/stack/cable_coil/five
category = list(
RND_CATEGORY_INITIAL,
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_ENGINEERING,
Expand Down

0 comments on commit 1dab45b

Please sign in to comment.