Skip to content

Commit

Permalink
move from props.dm to machinery.dm because it's still interesting to …
Browse files Browse the repository at this point in the history
…make them power up etc...
  • Loading branch information
Julien committed Jan 12, 2024
1 parent 8a27923 commit 3f61ecd
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
30 changes: 30 additions & 0 deletions code/game/machinery/machinery.dm
Original file line number Diff line number Diff line change
Expand Up @@ -327,3 +327,33 @@ Class Procs:
/obj/structure/machinery/ui_state(mob/user)
return GLOB.not_incapacitated_and_adjacent_state

//made into prop from an old destilery project abandon 9 year ago.

/obj/structure/prop/mill
name = "\improper Mill"
desc = "It is a machine that grinds produce."
icon_state = "autolathe"
density = TRUE
anchored = TRUE

/obj/structure/prop/fermenter
name = "\improper Fermenter"
desc = "It is a machine that ferments produce into alcoholic drinks."
icon_state = "autolathe"
density = TRUE
anchored = TRUE

/obj/structure/prop/still
name = "\improper Still"
desc = "It is a machine that produces hard liquor from alcoholic drinks."
icon_state = "autolathe"
density = TRUE
anchored = TRUE

/obj/structure/prop/squeezer
name = "\improper Squeezer"
desc = "It is a machine that squeezes extracts from produce."
icon_state = "autolathe"
density = TRUE
anchored = TRUE
30 changes: 0 additions & 30 deletions code/game/objects/structures/props.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1372,33 +1372,3 @@
if(initial(emote.sound))
playsound(loc, initial(emote.sound), 50, FALSE)
return TRUE

//made into prop from an old destilery project abandon 9 year ago.

/obj/structure/prop/mill
name = "\improper Mill"
desc = "It is a machine that grinds produce."
icon_state = "autolathe"
density = TRUE
anchored = TRUE

/obj/structure/prop/fermenter
name = "\improper Fermenter"
desc = "It is a machine that ferments produce into alcoholic drinks."
icon_state = "autolathe"
density = TRUE
anchored = TRUE

/obj/structure/prop/still
name = "\improper Still"
desc = "It is a machine that produces hard liquor from alcoholic drinks."
icon_state = "autolathe"
density = TRUE
anchored = TRUE

/obj/structure/prop/squeezer
name = "\improper Squeezer"
desc = "It is a machine that squeezes extracts from produce."
icon_state = "autolathe"
density = TRUE
anchored = TRUE

0 comments on commit 3f61ecd

Please sign in to comment.