diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index 06d4233b95..b91e231b1a 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -170,7 +170,10 @@ //Belly messages dat += "
Belly Messages" - + + //Belly sound + dat += "
Set Belly Escapability" + //Delete button dat += "
Delete Belly" @@ -475,6 +478,17 @@ selected.vore_sound = vore_sounds[choice] + if(href_list["b_escapable"]) + if(selected.escapable == 0) + selected.escapable = 1 + usr << "Your belly is now escapable." + else if(selected.escapable == 1) + selected.escapable = 0 + usr << "Your belly is now unescapable." + else + selected.escapable = 0 + usr << "Something went wrong. Your stomach is now unescapable. Press the button again to make it escapable." //If they somehow have a varable that's not 0 or 1 + if(href_list["b_soundtest"]) user << selected.vore_sound