Add status parameter to item & node def

Colours the item/node description to red if "no," orange if "unstable," and white if anything else.
This commit is contained in:
octacian
2017-02-24 16:20:05 -08:00
parent 81705adbdc
commit e0e5702053
3 changed files with 19 additions and 2 deletions

View File

@ -23,6 +23,7 @@ me.register_node("fuel_fired_generator", {
},
groups = { cracky = 1 },
paramtype2 = "facedir",
status = "no",
})
-- [register node] Super Smelter
@ -46,4 +47,5 @@ me.register_node("super_smelter", {
},
groups = { cracky = 1 },
paramtype2 = "facedir",
status = "no",
})