From 2f5f28cc365616ba692bec8f5084d079872c6384 Mon Sep 17 00:00:00 2001 From: chopchop1614 Date: Tue, 2 Aug 2016 19:17:22 +0100 Subject: [PATCH] fixes the fix --- code/datums/spells/horsemask.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/datums/spells/horsemask.dm b/code/datums/spells/horsemask.dm index 787e58ec9f7..9b0890515f5 100644 --- a/code/datums/spells/horsemask.dm +++ b/code/datums/spells/horsemask.dm @@ -26,7 +26,8 @@ if(!target) return - if((!target.type in compatible_mobs) || ishuman(target)) + + if(!is_type_in_list(target, compatible_mobs)) to_chat(user, "It'd be stupid to curse [target] with a horse's head!") return