Skip to content

Commit

Permalink
blue icons & dead egg fix
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed Jul 28, 2024
1 parent 4ac25d5 commit 60d1f2c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions code/modules/borer/borer_egg.dm
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,13 @@
if(target == user)
attack_self(user)

else if(istype(target, /mob/living/carbon/human) )
else if(ishuman(target))
var/mob/living/carbon/human/human_target = target
if(human_target.species.flags & IS_SYNTHETIC)
to_chat(human_target, SPAN_DANGER("They have a monitor for a head, where do you think you're going to put that?"))
to_chat(human_target, SPAN_WARNING("They have a monitor for a head, where do you think you're going to put that?"))
return FALSE
if(target.stat == DEAD)
to_chat(user, SPAN_WARNING("You can't feed this to the dead!"))
return FALSE
if(target.has_brain_worms())
to_chat(user, SPAN_WARNING("Something makes you feel like you don't need to do this..."))
Expand Down
Binary file modified icons/mob/hud/actions_borer.dmi
Binary file not shown.

0 comments on commit 60d1f2c

Please sign in to comment.