Skip to content

Commit

Permalink
Фикс хедкрабов (BlueMoon-Labs#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kush1Push1 authored Nov 28, 2023
1 parent 8875022 commit 47a7097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/simple_animal/hostile/headcrab.dm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
if(..() && !stat)
if(!is_zombie && isturf(src.loc))
for(var/mob/living/carbon/human/H in oview(src, 1)) //Only for corpse right next to/on same tile
if(!H.get_item_by_slot(ITEM_SLOT_HEAD) && prob(50) && Zombify(H))
if(!H.get_item_by_slot(ITEM_SLOT_HEAD) && prob(50)) // BLUEMOON EDIT - убрана зомбификация, она идёт дальше
visible_message("<span class='danger'>[src] запрыгивает на голову [H], вгрызясь своими лапками в затылок жертвы!</span>", "<span class='danger'>[src] запрыгивает на голову [H], вгрызясь своими лапками в затылок жертвы!</span>")
H.death(FALSE)
Zombify(H)
Expand Down

0 comments on commit 47a7097

Please sign in to comment.