From 294b1e375419623c13332eea2dcb77dfcc4916dd Mon Sep 17 00:00:00 2001 From: Jaraci <57604458+Jaraci@users.noreply.github.com> Date: Thu, 24 Nov 2022 01:10:38 +0000 Subject: [PATCH] Limits the big stompy manoeuvre CLANG jump to mob_size > 10 instead of >= 10 (#15147) --- code/modules/mob/living/maneuvers/maneuver_leap.dm | 2 +- .../omicega-fdsofdsopfdsopfdsopfdrterew.yml | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/omicega-fdsofdsopfdsopfdsopfdrterew.yml diff --git a/code/modules/mob/living/maneuvers/maneuver_leap.dm b/code/modules/mob/living/maneuvers/maneuver_leap.dm index cc43dbd1233..e05b51153e2 100644 --- a/code/modules/mob/living/maneuvers/maneuver_leap.dm +++ b/code/modules/mob/living/maneuvers/maneuver_leap.dm @@ -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 diff --git a/html/changelogs/omicega-fdsofdsopfdsopfdsopfdrterew.yml b/html/changelogs/omicega-fdsofdsopfdsopfdsopfdrterew.yml new file mode 100644 index 00000000000..df0846e3111 --- /dev/null +++ b/html/changelogs/omicega-fdsofdsopfdsopfdsopfdrterew.yml @@ -0,0 +1,13 @@ +# Your name. +author: Omicega + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Limits the big quake stompy jump version of the jump manoeuvre to very big species only, rather than just big ones."