Skip to content

Commit

Permalink
Update code/modules/mob/living/carbon/human/human.dm
Browse files Browse the repository at this point in the history
Co-authored-by: harryob <[email protected]>
  • Loading branch information
stanalbatross and harryob authored Nov 19, 2024
1 parent 49361ee commit 0a6219a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/modules/mob/living/carbon/human/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1770,18 +1770,18 @@
var/temp = 0 //see setup.dm:694

if(species && species.flags & NO_BLOOD)
src.pulse = PULSE_NONE //No blood, no pulse.
pulse = PULSE_NONE //No blood, no pulse.

else if(stat == DEAD || status_flags & FAKEDEATH)
src.pulse = PULSE_NONE //That's it, you're dead, nothing can influence your pulse
pulse = PULSE_NONE //That's it, you're dead, nothing can influence your pulse

else if(floor(blood_volume) <= BLOOD_VOLUME_BAD) //How much blood do we have
src.pulse = PULSE_THREADY //not enough :(
pulse = PULSE_THREADY //not enough :(

else
src.pulse = PULSE_NORM
pulse = PULSE_NORM

switch(src.pulse)
switch(pulse)
if(PULSE_NONE)
return "0"
if(PULSE_SLOW)
Expand Down

0 comments on commit 0a6219a

Please sign in to comment.