diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 96f2262c2f..1906c3decc 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")