mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 12:29:46 +01:00
Fixes hallucinations not processing on humans. (#21368)
I am pretty sure this was broken for over a year Co-authored-by: Matt Atlas <liermattia@gmail.com>
This commit is contained in:
@@ -756,8 +756,9 @@
|
||||
silent = 0
|
||||
return 1
|
||||
|
||||
if(hallucination && (HAS_TRAIT(src, TRAIT_BYPASS_HALLUCINATION_RESTRICTION) || !(species.flags & NO_POISON|IS_PLANT)))
|
||||
handle_hallucinations()
|
||||
if(hallucination)
|
||||
if(HAS_TRAIT(src, TRAIT_BYPASS_HALLUCINATION_RESTRICTION) || !((species.flags & NO_POISON) && (species.flags & IS_PLANT)))
|
||||
handle_hallucinations()
|
||||
|
||||
if(get_shock() >= species.total_health)
|
||||
if(!stat && !paralysis)
|
||||
|
||||
Reference in New Issue
Block a user