From dbc3f4850a8d75cc70602fa43c6f935b3a1488c2 Mon Sep 17 00:00:00 2001 From: Raeschen Date: Mon, 3 Apr 2023 18:49:51 +0200 Subject: [PATCH] increase max belly liquid capacity to 300 --- code/modules/vore/eating/belly_obj_vr.dm | 2 +- code/modules/vore/eating/vorepanel_vr.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index eb5e9e7edb..6469e6e1a3 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -304,7 +304,7 @@ START_PROCESSING(SSbellies, src) - create_reagents(100) //CHOMP So we can have some liquids in bellies + create_reagents(300) //CHOMP So we can have some liquids in bellies flags |= NOREACT // We dont want bellies to start bubling nonstop due to people mixing when transfering and making different reagents diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index 90bb48cef3..e2464fa8b8 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -1903,10 +1903,10 @@ return FALSE . = TRUE if("b_liq_reagent_capacity") - var/new_custom_vol = input(user, "Choose the amount of liquid the belly can contain at most. Ranges from 0 to 100.", "Set Custom Belly Capacity.", host.vore_selected.custom_max_volume) as num|null + var/new_custom_vol = input(user, "Choose the amount of liquid the belly can contain at most. Ranges from 10 to 300.", "Set Custom Belly Capacity.", host.vore_selected.custom_max_volume) as num|null if(new_custom_vol == null) return FALSE - var/new_new_custom_vol = CLAMP(new_custom_vol, 10, 100) + var/new_new_custom_vol = CLAMP(new_custom_vol, 10, 300) host.vore_selected.custom_max_volume = new_new_custom_vol . = TRUE if("b_liq_sloshing")