[MIRROR] sort those under belly messages too (#9717)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2024-12-28 14:25:54 -07:00
committed by GitHub
parent 9cc6521a7b
commit f728ad5760

View File

@@ -179,10 +179,10 @@ GLOBAL_LIST_INIT(digest_modes, list())
if(L.size_multiplier > B.shrink_grow_size && B.owner.size_multiplier < 2) //Grow until either pred is large or prey is small. if(L.size_multiplier > B.shrink_grow_size && B.owner.size_multiplier < 2) //Grow until either pred is large or prey is small.
B.owner.resize(B.owner.size_multiplier + 0.01) //Grow by 1% per tick. B.owner.resize(B.owner.size_multiplier + 0.01) //Grow by 1% per tick.
if(B.owner.size_multiplier >= 2) // Adds some feedback so the pred knows they can't grow anymore. if(B.owner.size_multiplier >= 2) // Adds some feedback so the pred knows they can't grow anymore.
to_chat(B.owner, span_notice("You feel you have grown as much as you can.")) to_chat(B.owner, span_vnotice("You feel you have grown as much as you can."))
L.resize(L.size_multiplier - 0.01) //Shrink by 1% per tick L.resize(L.size_multiplier - 0.01) //Shrink by 1% per tick
if(L.size_multiplier <= B.shrink_grow_size) // Adds some feedback so the pred knows their prey has stopped shrinking. if(L.size_multiplier <= B.shrink_grow_size) // Adds some feedback so the pred knows their prey has stopped shrinking.
to_chat(B.owner, span_notice("You feel [L] get as small as you would like within your [lowertext(B.name)].")) to_chat(B.owner, span_vnotice("You feel [L] get as small as you would like within your [lowertext(B.name)]."))
B.owner.update_fullness() B.owner.update_fullness()
. = ..() . = ..()