diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index 3e68456e42c..307dd1b7da2 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -71,6 +71,10 @@ base = "rtable" if(istype(src, /obj/structure/table/wood/poker)) base = "poker" + if(istype(src, /obj/structure/table/wood/fancy)) + base = "fancy" + if(istype(src, /obj/structure/table/wood/fancy/black)) + base = "fancyblack" icon_state = "[base]flip[type][type == 1 ? subtype : ""]" diff --git a/icons/obj/smooth_structures/fancy_table.dmi b/icons/obj/smooth_structures/fancy_table.dmi index c675550ed5a..c844ec5cedd 100644 Binary files a/icons/obj/smooth_structures/fancy_table.dmi and b/icons/obj/smooth_structures/fancy_table.dmi differ diff --git a/icons/obj/smooth_structures/fancy_table_black.dmi b/icons/obj/smooth_structures/fancy_table_black.dmi index 8275c48d3c6..7932c0465b9 100644 Binary files a/icons/obj/smooth_structures/fancy_table_black.dmi and b/icons/obj/smooth_structures/fancy_table_black.dmi differ