diff --git a/code/game/machinery/autolathe/artist_bench.dm b/code/game/machinery/autolathe/artist_bench.dm index ce7b025e5c..41c0387419 100644 --- a/code/game/machinery/autolathe/artist_bench.dm +++ b/code/game/machinery/autolathe/artist_bench.dm @@ -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" @@ -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 @@ -373,6 +373,5 @@ MATERIAL_STEEL = 20, MATERIAL_PLASTIC = 20, MATERIAL_GLASS = 20, - MATERIAL_PLASTEEL = 20, MATERIAL_WOOD = 20 )