Skip to content

Commit

Permalink
Artist Bench no longer require Plasteel
Browse files Browse the repository at this point in the history
  • Loading branch information
WeNeedMorePhoron committed May 25, 2023
1 parent f11f5eb commit 895331b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions code/game/machinery/autolathe/artist_bench.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/obj/machinery/autolathe/artist_bench
name = "artist's bench"
desc = "Insert wood, steel, glass, plasteel, plastic and a bit of your soul to create a beautiful work of art. \
desc = "Insert wood, steel, glass, plastic and a bit of your soul to create a beautiful work of art. \
Requires a stock of at least 20 sheets of each of the aforementioned materials before you begin sacrificing your soul." // OCCULUS EDIT - Makes its requirements clear
icon = 'icons/obj/machines/autolathe.dmi'
icon_state = "bench"
Expand All @@ -20,7 +20,7 @@
have_design_selector = FALSE
categories = list("Artwork")

suitable_materials = list(MATERIAL_WOOD, MATERIAL_STEEL, MATERIAL_GLASS, MATERIAL_PLASTEEL, MATERIAL_PLASTIC)
suitable_materials = list(MATERIAL_WOOD, MATERIAL_STEEL, MATERIAL_GLASS, MATERIAL_PLASTIC) // Occulus Edit: No Plasteel!
var/min_mat = 20
var/min_insight = 40
var/datum/component/inspiration/inspiration
Expand Down Expand Up @@ -373,6 +373,5 @@
MATERIAL_STEEL = 20,
MATERIAL_PLASTIC = 20,
MATERIAL_GLASS = 20,
MATERIAL_PLASTEEL = 20,
MATERIAL_WOOD = 20
)

0 comments on commit 895331b

Please sign in to comment.