diff --git a/code/game/machinery/washing_machine.dm b/code/game/machinery/washing_machine.dm
index a48fa88b96a..a5120327f4c 100644
--- a/code/game/machinery/washing_machine.dm
+++ b/code/game/machinery/washing_machine.dm
@@ -272,6 +272,9 @@
if( istype(W,/obj/item/clothing/gloves/furgloves ) )
to_chat(user, "This item does not fit.")
return
+ if(istype(W, /obj/item/clothing/gloves/color/black/krav_maga/sec))
+ to_chat(user, "Washing these gloves would fry the electronics!")
+ return
if(W.flags & NODROP) //if "can't drop" item
to_chat(user, "\The [W] is stuck to your hand, you cannot put it in the washing machine!")
return