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