From 295e2646f6e7a2736c7ab057116fa1761db2c6e5 Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Sat, 31 Aug 2024 17:05:04 +0200 Subject: [PATCH] multiple examine exist --- code/modules/vore/eating/vorepanel_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index df541fee43d..b48f853da7f 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -1266,12 +1266,12 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono", if(new_message) host.vore_selected.set_messages(new_message,"stmoao", limit = MAX_MESSAGE_LEN / 4) if("em") - var/new_message = sanitize(tgui_input_text(user,"These are sent to people who examine you when this belly has contents. Write them in 3rd person ('Their %belly is bulging')."+help,"Examine Message (when full)",host.vore_selected.get_messages("em"), MAX_MESSAGE_LEN / 2, TRUE, prevent_enter = TRUE),MAX_MESSAGE_LEN / 2,0,0,0) + var/new_message = sanitize(tgui_input_text(user,"These are sent to people who examine you when this belly has contents. Write them in 3rd person ('Their %belly is bulging')."+help,"Examine Message (when full)",host.vore_selected.get_messages("em"), MAX_MESSAGE_LEN * 1.5, TRUE, prevent_enter = TRUE),MAX_MESSAGE_LEN * 1.5,0,0,0) if(new_message) host.vore_selected.set_messages(new_message,"em", limit = MAX_MESSAGE_LEN / 2) if("ema") - var/new_message = sanitize(tgui_input_text(user,"These are sent to people who examine you when this belly has absorbed victims. Write them in 3rd person ('Their %belly is larger'). %count will not work for this type, and %countprey will only count absorbed victims."+help,"Examine Message (with absorbed victims)",host.vore_selected.get_messages("ema"), MAX_MESSAGE_LEN / 2, TRUE, prevent_enter = TRUE),MAX_MESSAGE_LEN / 2,0,0,0) + var/new_message = sanitize(tgui_input_text(user,"These are sent to people who examine you when this belly has absorbed victims. Write them in 3rd person ('Their %belly is larger'). %count will not work for this type, and %countprey will only count absorbed victims."+help,"Examine Message (with absorbed victims)",host.vore_selected.get_messages("ema"), MAX_MESSAGE_LEN * 1.5, TRUE, prevent_enter = TRUE),MAX_MESSAGE_LEN * 1.5,0,0,0) if(new_message) host.vore_selected.set_messages(new_message,"ema", limit = MAX_MESSAGE_LEN / 2)