Merge pull request #4430 from VOREStation/upstream-merge-5690

[MIRROR] Fix wax appearing to be steel.
This commit is contained in:
Spades
2018-10-20 08:57:38 -04:00
committed by GitHub

View File

@@ -240,11 +240,19 @@
desc = "Soft substance produced by bees. Used to make candles."
icon = 'icons/obj/beekeeping.dmi'
icon_state = "wax"
default_type = "wax"
/obj/item/stack/material/wax/New()
..()
recipes = wax_recipes
/material/wax
name = "wax"
stack_type = /obj/item/stack/material/wax
icon_colour = "#fff343"
melting_point = T0C+300
weight = 1
var/global/list/datum/stack_recipe/wax_recipes = list( \
new/datum/stack_recipe("candle", /obj/item/weapon/flame/candle) \
)