Skip to content

Commit

Permalink
is carbon correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
shodd committed Jan 23, 2025
1 parent 79e1e94 commit 64e1bc7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/modules/antagonists/heretic/items/eldritch_painting.dm
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,9 @@

/obj/structure/sign/painting/eldritch/vines/examine_effects(mob/living/carbon/examiner)
. = ..()
if(!IS_HERETIC(examiner) && iscarbon(examiner))
if(!iscarbon(examiner))
return
if(!IS_HERETIC(examiner))
new /datum/spacevine_controller(get_turf(examiner), mutations, 0, 10)
to_chat(examiner, span_notice("The thicket crawls through the frame, and you suddenly find vines beneath you..."))
return
Expand Down

0 comments on commit 64e1bc7

Please sign in to comment.