Skip to content

Commit

Permalink
Update code/datums/ammo/ammo.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
ihatethisengine committed Jul 31, 2024
1 parent d8ae651 commit c4c7369
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/datums/ammo/ammo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@
/datum/ammo/proc/slowdown(mob/living/living_mob, obj/projectile/fired_projectile)
if(isxeno(living_mob))
var/mob/living/carbon/xenomorph/xeno = living_mob
if(xeno.caste.tier > 2)
return //tier 3 are not affected
if(xeno.caste.tier > 2 || (xeno.caste.tier == 0 && xeno.mob_size >= MOB_SIZE_BIG))
return //tier 3 and big tier 0 (like queen) are not affected
if(iscarbonsizexeno(living_mob))
var/mob/living/carbon/xenomorph/target = living_mob
target.apply_effect(1, SUPERSLOW)
Expand Down

0 comments on commit c4c7369

Please sign in to comment.