diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 5d4a714829..cefced14fd 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -373,7 +373,7 @@ var/taste if(can_taste && (taste = M.get_taste_message(FALSE))) to_chat(owner, "[M] tastes of [taste].") - vore_fx(M) + vore_fx(M, TRUE) //CHOMPEdit: update belleh owner.update_fullness() //CHOMPEdit - This is run whenever a belly's contents are changed. //Stop AI processing in bellies if(M.ai_holder) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index 310f6a1cdc..90bb48cef3 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -619,11 +619,13 @@ host.show_vore_fx = !host.show_vore_fx if(host.client.prefs_vr) host.client.prefs_vr.show_vore_fx = host.show_vore_fx - if(!host.show_vore_fx) + if (isbelly(host.loc)) //CHOMPEdit + var/obj/belly/B = host.loc + B.vore_fx(host, TRUE) + else host.clear_fullscreen("belly") - //host.clear_fullscreen("belly2") //For multilayered stomachs. Not currently implemented. - if(!host.hud_used.hud_shown) - host.toggle_hud_vis() + if(!host.hud_used.hud_shown) + host.toggle_hud_vis() unsaved_changes = TRUE return TRUE if("toggle_noisy") diff --git a/tgui/packages/tgui/interfaces/VorePanel.js b/tgui/packages/tgui/interfaces/VorePanel.js index b36ebba661..c8a4055e84 100644 --- a/tgui/packages/tgui/interfaces/VorePanel.js +++ b/tgui/packages/tgui/interfaces/VorePanel.js @@ -1,7 +1,7 @@ import { capitalize } from 'common/string'; import { Fragment } from 'inferno'; import { useBackend, useLocalState } from '../backend'; -import { Box, Button, Flex, Collapsible, Icon, LabeledList, NoticeBox, Section, Tabs, Divider } from '../components'; +import { Box, Button, Flex, Collapsible, Icon, LabeledList, NoticeBox, Section, Tabs, Divider, Stack } from '../components'; import { Window } from '../layouts'; import { classes } from 'common/react'; @@ -939,35 +939,31 @@ const VoreSelectedBellyVisuals = (props, context) => {
- - - - - - - - - + + + + + + ); +};