Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allows laundry machines to be scanned with a mechscanner #16123

Merged
merged 2 commits into from Oct 1, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions code/WorkInProgress/laundry.dm
Expand Up @@ -5,6 +5,9 @@
#define CYCLE_TIME_MOB_INSIDE 5
#define CYCLE_TIME 10

TYPEINFO(/obj/submachine/laundry_machine)
mats = 20

/obj/submachine/laundry_machine
name = "laundry machine"
desc = "A combined washer/dryer unit used for cleaning clothes."
Expand Down
3 changes: 3 additions & 0 deletions code/WorkInProgress/tarmStuff.dm
Expand Up @@ -739,6 +739,9 @@ TYPEINFO(/obj/item/device/geiger)
. = ..()

//DIRTY DIRTY PLAYERS
TYPEINFO(/obj/submachine/laundry_machine/portable)
mats = list("telecrystal" = 5, "MET-2" = 15, "CON-1" = 10)

unfunnyperson marked this conversation as resolved.
Show resolved Hide resolved
/obj/submachine/laundry_machine/portable
name = "Port-A-Laundry"
desc = "Don't ask."
Expand Down