mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-25 05:51:56 +01:00
Limits the big stompy manoeuvre CLANG jump to mob_size > 10 instead of >= 10 (#15147)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user