Skip to content

Commit

Permalink
unbuckles the mob after the animation
Browse files Browse the repository at this point in the history
  • Loading branch information
=vero committed Mar 24, 2024
1 parent d0975c9 commit 87fe44b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/datums/diseases/black_goo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,15 @@

/datum/disease/black_goo/proc/zombie_transform(mob/living/carbon/human/human)
set waitfor = 0
if(human.buckled)
human.buckled.unbuckle()
zombie_is_transforming = TRUE
human.vomit_on_floor()
human.adjust_effect(5, STUN)
sleep(20)
human.make_jittery(500)
sleep(30)
if(human && human.loc)
if(human.buckled)
human.buckled.unbuckle()
if(human.stat == DEAD)
human.revive(TRUE)
human.remove_language(LANGUAGE_ENGLISH) // You lose the ability to understand english. Language processing is handled in the mind not the body.
Expand Down

0 comments on commit 87fe44b

Please sign in to comment.