Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowwolf committed Sep 2, 2023
1 parent f045488 commit 22e1afa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion code/modules/organs/organ_internal.dm
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,14 @@
/datum/internal_organ/brain/process(delta_time)
..()

if(owner.chem_effect_flags & CHEM_EFFECT_ORGAN_STASIS)
return

if(organ_status >= ORGAN_BRUISED && prob(5 * delta_time))
var/dir_choice = pick(list(NORTH, SOUTH, EAST, WEST))
owner.drop_held_items()
owner.Move(get_step(get_turf(owner), dir_choice))
if(!owner.buckled && owner.stat == CONSCIOUS)
owner.Move(get_step(get_turf(owner), dir_choice))
to_chat(owner, SPAN_DANGER("Your mind wanders and goes blank for a moment..."))

if(organ_status >= ORGAN_BROKEN && prob(5 * delta_time))
Expand Down

0 comments on commit 22e1afa

Please sign in to comment.