From ed960e00248882526781d79084fdfd5c20c3d80b Mon Sep 17 00:00:00 2001 From: Verkister Date: Fri, 29 Jan 2021 17:46:45 +0200 Subject: [PATCH] Adds slowdown to overweight eggs. --- code/modules/vore/eating/bellymodes_datum_vr.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm index 48abf3db5d7..c1f01db31e5 100644 --- a/code/modules/vore/eating/bellymodes_datum_vr.dm +++ b/code/modules/vore/eating/bellymodes_datum_vr.dm @@ -183,6 +183,8 @@ GLOBAL_LIST_INIT(digest_modes, list()) B.ownegg.icon_scale_y = 0.25 * B.ownegg.w_class B.ownegg.update_transform() egg_contents -= M + if(B.ownegg.w_class > 4) + B.ownegg.slowdown = B.ownegg.w_class - 4 B.ownegg = null break C.forceMove(B.ownegg) @@ -195,5 +197,7 @@ GLOBAL_LIST_INIT(digest_modes, list()) B.ownegg.icon_scale_x = 0.25 * B.ownegg.w_class B.ownegg.icon_scale_y = 0.25 * B.ownegg.w_class B.ownegg.update_transform() + if(B.ownegg.w_class > 4) + B.ownegg.slowdown = B.ownegg.w_class - 4 B.ownegg = null return \ No newline at end of file