Skip to content

Commit

Permalink
[MIRROR] Fix bitrunning triggering claustrophobia [MDB IGNORE] (#886)
Browse files Browse the repository at this point in the history
* Fix bitrunning triggering claustrophobia (#79944)

---------

Co-authored-by: SkyratBot <[email protected]>
Co-authored-by: Tim <[email protected]>
  • Loading branch information
3 people authored Nov 29, 2023
1 parent df87fe3 commit 2dfee18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/datums/quirks/negative_quirks/claustrophobia.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
if(quirk_holder.stat != CONSCIOUS || quirk_holder.IsSleeping() || quirk_holder.IsUnconscious())
return

if(HAS_TRAIT(quirk_holder, TRAIT_FEARLESS))
if(HAS_TRAIT(quirk_holder, TRAIT_MIND_TEMPORARILY_GONE) || HAS_TRAIT(quirk_holder, TRAIT_FEARLESS))
return

var/nick_spotted = FALSE
Expand Down

0 comments on commit 2dfee18

Please sign in to comment.