From f728ad57606cc41a79678ba63f5836d9a8a5509b Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Sat, 28 Dec 2024 14:25:54 -0700 Subject: [PATCH] [MIRROR] sort those under belly messages too (#9717) Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> --- code/modules/vore/eating/bellymodes_datum_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm index 6df8250170..c16507670e 100644 --- a/code/modules/vore/eating/bellymodes_datum_vr.dm +++ b/code/modules/vore/eating/bellymodes_datum_vr.dm @@ -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. 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. - 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 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() . = ..()