Merge pull request #6032 from Raeschen/slosh

increase max belly liquid capacity to 300
This commit is contained in:
Nadyr
2023-04-15 20:45:15 -04:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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")