From 5d97f81047cea97068460ecf49a77b0bc92ef841 Mon Sep 17 00:00:00 2001 From: Verkister Date: Fri, 20 Oct 2017 12:57:42 +0300 Subject: [PATCH] Sets the minimum digest brute to 0 from 3. -Afaik the 3 was supposed to be like the minimum total damage for the slowest gurgles, but with the limit being applied to both damage types, the actual minimum damage was restricted to 2+3 or 3+3 depending whether you had touched the default brute value or not, basically causing the slowest possible digestion still being faster than default. --- code/modules/vore/eating/vorepanel_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index 61d6f2a502..2bf57bcbd4 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -628,10 +628,10 @@ selected.digest_burn = new_new_damage if(href_list["b_brute_dmg"]) - var/new_damage = input(user, "Choose the amount of brute damage prey will take per tick. Ranges from 3 to 6", "Set Belly Brute Damage.") as num|null + var/new_damage = input(user, "Choose the amount of brute damage prey will take per tick. Ranges from 0 to 6", "Set Belly Brute Damage.") as num|null if(new_damage == null) return - var/new_new_damage = Clamp(new_damage, 3, 6) + var/new_new_damage = Clamp(new_damage, 0, 6) selected.digest_brute = new_new_damage if(href_list["b_escapable"])