From 0efcfc3438645b4ecbbfeb61e06f9c093d97c1df Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Wed, 7 Aug 2019 16:56:58 -0400 Subject: [PATCH] Add a slight constant factor to digestion --- stories/mass-vore.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stories/mass-vore.js b/stories/mass-vore.js index aa7dcc0..82a4655 100644 --- a/stories/mass-vore.js +++ b/stories/mass-vore.js @@ -6,9 +6,11 @@ function digest(state, count) { if (count === undefined) { - count = state.player.stats.stomach.value / 200; + count = state.player.stats.stomach.value / 200 + 2; } + count = Math.min(state.player.stats.stomach.value, count); + count = Math.floor(count); state.player.stats.stomach.value -= count;