Skip to content

Commit

Permalink
Fix heretics being stunned by cult funnyhand
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolucy committed Jan 26, 2024
1 parent 836f4b1 commit b18eeb3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions code/modules/antagonists/cult/blood_magic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -412,20 +412,18 @@

if(IS_HERETIC(target))
to_chat(user, span_warning("Some force greater than you intervenes! [target] is protected by the Forgotten Gods!"))
to_chat(target, span_warning("You are protected by your faith to the Forgotten Gods."))
to_chat(target, span_warning("You are protected by your faith to the Forgotten Gods!"))
var/old_color = target.color
target.color = rgb(0, 128, 0)
animate(target, color = old_color, time = 1 SECONDS, easing = EASE_IN)

// MONKESTATION EDIT START
if(IS_CLOCK(target))
else if(IS_CLOCK(target))
to_chat(user, span_warning("Some force greater than you intervenes! [target] is protected by the heretic Ratvar!"))
to_chat(target, span_warning("You are protected by your faith to Ratvar!"))
var/old_color = target.color
target.color = rgb(190, 135, 0)
animate(target, color = old_color, time = 1 SECONDS, easing = EASE_IN)
// MONKESTATION EDIT END

else if(target.can_block_magic())
to_chat(user, span_warning("The spell had no effect!"))
else
Expand Down

0 comments on commit b18eeb3

Please sign in to comment.