From 7a707d3c8f76a031a9e2316aa4f2b4dfe078b206 Mon Sep 17 00:00:00 2001 From: 4dplanner <3combined@gmail.com> Date: Tue, 29 Jan 2019 13:11:04 +0000 Subject: [PATCH] ! --- code/datums/components/anti_magic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/anti_magic.dm b/code/datums/components/anti_magic.dm index f4d6fa98b0e..373b818cc11 100644 --- a/code/datums/components/anti_magic.dm +++ b/code/datums/components/anti_magic.dm @@ -33,7 +33,7 @@ UnregisterSignal(user, COMSIG_MOB_RECEIVE_MAGIC) /datum/component/anti_magic/proc/protect(datum/source, mob/user, _magic, _holy, major, self, list/protection_sources) - if(((_magic && magic) || (_holy && holy)) && (!self || !blocks_self)) + if(((_magic && magic) || (_holy && holy)) && (!self || blocks_self)) protection_sources += parent if(reaction) reaction.Invoke(user, major)