Skip to content

Commit

Permalink
nest
Browse files Browse the repository at this point in the history
  • Loading branch information
BeagleGaming1 committed Jun 30, 2023
1 parent 8d5e539 commit bdea9be
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,17 @@
. += "FOR THE HIVE!: in [caboom_left] seconds"

/datum/behavior_delegate/runner_acider/melee_attack_additional_effects_target(mob/living/carbon/target_mob)
if (ishuman(target_mob))
if(ishuman(target_mob))
var/mob/living/carbon/human/target_human = target_mob
if (target_human.stat == DEAD)
if(target_human.buckled && istype(target_human.buckled, /obj/structure/bed/nest))
return
for(var/datum/effects/acid/AA in target_mob.effects_list)
qdel(AA)
if(target_human.stat == DEAD)
return

for(var/datum/effects/acid/acid_effect in target_mob.effects_list)
qdel(acid_effect)
break

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

0 comments on commit bdea9be

Please sign in to comment.