From 501562e89c167dd87a7e3daa7ba75dbf2afab2cd Mon Sep 17 00:00:00 2001 From: coldud13 Date: Mon, 15 May 2023 08:30:27 +1000 Subject: [PATCH] [MANUAL MIRROR] Fixes magic eyepatch spell casting (#75270) (#21069) Fixes magic eyepatch spell casting (#75270) Co-authored-by: tralezab <40974010+tralezab@users.noreply.github.com> --- code/modules/spells/spell.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/spells/spell.dm b/code/modules/spells/spell.dm index dd6f7136efe..6ad4f09415d 100644 --- a/code/modules/spells/spell.dm +++ b/code/modules/spells/spell.dm @@ -192,7 +192,7 @@ if(feedback) to_chat(owner, span_warning("You don't feel strong enough without your robe!")) return FALSE - if(!(human_owner.head?.clothing_flags & CASTING_CLOTHES) || (human_owner.glasses?.clothing_flags & CASTING_CLOTHES)) + if(!(human_owner.head?.clothing_flags & CASTING_CLOTHES) && !(human_owner.glasses?.clothing_flags & CASTING_CLOTHES)) if(feedback) to_chat(owner, span_warning("You don't feel strong enough without your hat!")) return FALSE