Skip to content

Commit

Permalink
I'm meant to actually test my code?
Browse files Browse the repository at this point in the history
  • Loading branch information
BeagleGaming1 committed Jul 1, 2023
1 parent 1dfb464 commit b359263
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,9 @@

new /datum/effects/acid(target_mob, bound_xeno, initial(bound_xeno.caste_type))
if(isxeno_human(target_mob)) //Will the runner get acid stacks
if(/obj/item/alien_embryo in target_mob.contents)
var/obj/item/alien_embryo/embryo
if(embryo.stage >= 4) //Late stage hugged incase the runner unnests them
return
var/obj/item/alien_embryo/embryo = locate(/obj/item/alien_embryo) in target_mob.contents
if(embryo?.stage >= 4) //Late stage hugged incase the runner unnests them
return

if(target_mob.lying)
modify_acid(acid_slash_regen_lying)
Expand Down

0 comments on commit b359263

Please sign in to comment.