diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm
index 4ea3bfaab15..bc6f7259ebc 100644
--- a/code/modules/clothing/clothing.dm
+++ b/code/modules/clothing/clothing.dm
@@ -387,10 +387,10 @@ BLIND // can't see anything
var/obj/item/match/M = I
if(M.matchignite()) // Match isn't lit, but isn't burnt.
user.visible_message("[user] strikes a [M] on the bottom of [src], lighting it.","You strike the [M] on the bottom of [src] to light it.")
- else if(M.matchburnout()) // Match is lit, not extinguished.
+ playsound(user.loc, 'sound/goonstation/misc/matchstick_light.ogg', 50, 1)
+ else
user.visible_message("[user] crushes the [M] into the bottom of [src], extinguishing it.","You crush the [M] into the bottom of [src], extinguishing it.")
- else // Match has been previously lit and extinguished.
- to_chat(user, "The [M] has already been extinguished.")
+ M.dropped()
return
if(istype(I, /obj/item/wirecutters))