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