From 5daa74a6e886206318a922c00e989202bc476a7f Mon Sep 17 00:00:00 2001 From: Bm0n <92271472+Bm0n@users.noreply.github.com> Date: Tue, 7 Jun 2022 06:33:34 -0400 Subject: [PATCH] pour one out for my purple skele (#17928) --- code/game/machinery/washing_machine.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/washing_machine.dm b/code/game/machinery/washing_machine.dm index 2c65b287ba9..bc4186b3a90 100644 --- a/code/game/machinery/washing_machine.dm +++ b/code/game/machinery/washing_machine.dm @@ -233,6 +233,9 @@ istype(W,/obj/item/bedsheet)) //YES, it's hardcoded... saves a var/can_be_washed for every single clothing item. + if( istype(W,/obj/item/clothing/under/plasmaman ) ) + to_chat(user, "This item does not fit.") + return if( istype(W,/obj/item/clothing/suit/space ) ) to_chat(user, "This item does not fit.") return @@ -251,9 +254,6 @@ if( istype(W,/obj/item/clothing/suit/armor ) ) to_chat(user, "This item does not fit.") return - if( istype(W,/obj/item/clothing/suit/armor ) ) - to_chat(user, "This item does not fit.") - return if( istype(W,/obj/item/clothing/mask/gas ) ) to_chat(user, "This item does not fit.") return