mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-24 21:57:53 +01:00
Merge pull request #6032 from Raeschen/slosh
increase max belly liquid capacity to 300
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user