diff --git a/code/game/machinery/washing_machine.dm b/code/game/machinery/washing_machine.dm index a0af9e3a5be..fcfdd79ac04 100644 --- a/code/game/machinery/washing_machine.dm +++ b/code/game/machinery/washing_machine.dm @@ -72,6 +72,7 @@ var/new_shoe_name = "" var/new_sheet_icon_state = "" var/new_sheet_name = "" + var/new_sheet_item_state = "" var/new_softcap_icon_state = "" var/new_softcap_name = "" var/new_desc = "The colors are a bit dodgy." @@ -115,6 +116,7 @@ if(wash_color == B.item_color) new_sheet_icon_state = B.icon_state new_sheet_name = B.name + new_sheet_item_state = B.item_state qdel(B) break qdel(B) @@ -170,6 +172,7 @@ for(var/obj/item/bedsheet/B in contents) B.icon_state = new_sheet_icon_state B.item_color = wash_color + B.item_state = new_sheet_item_state B.name = new_sheet_name B.desc = new_desc if(new_softcap_icon_state && new_softcap_name) diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm index de03ea7f233..bac062c9a28 100644 --- a/code/game/objects/structures/bedsheet_bin.dm +++ b/code/game/objects/structures/bedsheet_bin.dm @@ -108,7 +108,7 @@ LINEN BINS /obj/item/bedsheet/black icon_state = "sheetblack" item_state = "bedsheetblack" - item_color = "sheetblack" + item_color = "black" dream_messages = list("black") nightmare_messages = list("the void of space")