Skip to content

Commit

Permalink
Reduce accuracy when small mob size ( larva, hugger )
Browse files Browse the repository at this point in the history
  • Loading branch information
TeDGamer committed Sep 8, 2023
1 parent 70da7e2 commit f183357
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/projectiles/projectile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,8 @@
if(X.hivenumber == hivenumber)
return FALSE

if(mob_size >= MOB_SIZE_BIG) . += 10
if(mob_size == MOB_SIZE_SMALL) . -= 10
else if(mob_size >= MOB_SIZE_BIG) . += 10
if(evasion > 0)
. -= evasion

Expand Down

0 comments on commit f183357

Please sign in to comment.