Makes custom built table descriptions more accurate (#69768)

* table memes

* better yet

* Update code/game/objects/structures/tables_racks.dm

* Update code/game/objects/structures/tables_racks.dm
This commit is contained in:
ShizCalev
2022-09-09 11:50:30 -04:00
committed by GitHub
parent fd0942e780
commit 66a1bb3ee8
@@ -331,6 +331,13 @@
material_flags = MATERIAL_EFFECTS | MATERIAL_ADD_PREFIX | MATERIAL_COLOR | MATERIAL_AFFECT_STATISTICS
buildstack = null //No buildstack, so generate from mat datums
/obj/structure/table/greyscale/set_custom_materials(list/materials, multiplier)
. = ..()
var/list/materials_list = list()
for(var/datum/material/current_material as anything in custom_materials)
materials_list += "[current_material.name]"
desc = "A square [(materials_list.len > 1) ? "amalgamation" : "piece"] of [english_list(materials_list)] on four legs. It can not move."
///Table on wheels
/obj/structure/table/rolling
name = "Rolling table"