diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index a49b3f7a415..cb2b402b2a2 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -348,7 +348,7 @@ user.real_name = originalname /obj/item/clothing/mask/horsehead/change_speech_verb() - if (voicechange == TRUE) + if(voicechange) return pick("whinnies", "neighs", "says") /obj/item/clothing/mask/face diff --git a/code/modules/clothing/masks/voicemodulator.dm b/code/modules/clothing/masks/voicemodulator.dm index 60d9d61d0f8..c05a17aeab1 100644 --- a/code/modules/clothing/masks/voicemodulator.dm +++ b/code/modules/clothing/masks/voicemodulator.dm @@ -40,5 +40,5 @@ chameleon_action.emp_randomise() /obj/item/clothing/mask/gas/voice_modulator/change_speech_verb() - if (voice_modulator.active) + if(voice_modulator.active) return pick("modulates", "drones", "hums", "buzzes")