Limits the big stompy manoeuvre CLANG jump to mob_size > 10 instead of >= 10 (#15147)

This commit is contained in:
Jaraci
2022-11-24 02:10:38 +01:00
committed by GitHub
parent d31c056d07
commit 294b1e3754
2 changed files with 14 additions and 1 deletions
@@ -22,7 +22,7 @@
user.pass_flags = pass_flag
if(ishuman(user))
var/mob/living/carbon/human/H = user
if(H.species.mob_size >= 10)
if(H.species.mob_size > 10)
var/turf/T = get_turf(target)
var/damage_mod = 1
var/from_above = FALSE