From 78ecb43a44bdf1354feb4ac5e542bf37a4660c44 Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Sat, 9 Dec 2023 20:23:20 +0100 Subject: [PATCH] added all the new options to the reset as well. --- code/modules/vore/eating/vorepanel_vr.dm | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index dd470409626..17ac4fbe1c8 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -1290,6 +1290,31 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono", host.vore_selected.struggle_messages_inside = initial(host.vore_selected.struggle_messages_inside) host.vore_selected.absorbed_struggle_messages_outside = initial(host.vore_selected.absorbed_struggle_messages_outside) host.vore_selected.absorbed_struggle_messages_inside = initial(host.vore_selected.absorbed_struggle_messages_inside) + host.vore_selected.escape_attempt_messages_owner = initial(host.vore_selected.escape_attempt_messages_owner) + host.vore_selected.escape_attempt_messages_prey = initial(host.vore_selected.escape_attempt_messages_prey) + host.vore_selected.escape_messages_owner = initial(host.vore_selected.escape_messages_owner) + host.vore_selected.escape_messages_prey = initial(host.vore_selected.escape_messages_prey) + host.vore_selected.escape_messages_outside = initial(host.vore_selected.escape_messages_outside) + host.vore_selected.escape_item_messages_owner = initial(host.vore_selected.escape_item_messages_owner) + host.vore_selected.escape_item_messages_prey = initial(host.vore_selected.escape_item_messages_prey) + host.vore_selected.escape_item_messages_outside = initial(host.vore_selected.escape_item_messages_outside) + host.vore_selected.escape_fail_messages_owner = initial(host.vore_selected.escape_fail_messages_owner) + host.vore_selected.escape_fail_messages_prey = initial(host.vore_selected.escape_fail_messages_prey) + host.vore_selected.escape_attempt_absorbed_messages_owner = initial(host.vore_selected.escape_attempt_absorbed_messages_owner) + host.vore_selected.escape_attempt_absorbed_messages_prey = initial(host.vore_selected.escape_attempt_absorbed_messages_prey) + host.vore_selected.escape_absorbed_messages_owner = initial(host.vore_selected.escape_absorbed_messages_owner) + host.vore_selected.escape_absorbed_messages_prey = initial(host.vore_selected.escape_absorbed_messages_prey) + host.vore_selected.escape_absorbed_messages_outside = initial(host.vore_selected.escape_absorbed_messages_outside) + host.vore_selected.escape_fail_absorbed_messages_owner = initial(host.vore_selected.escape_fail_absorbed_messages_owner) + host.vore_selected.escape_fail_absorbed_messages_prey = initial(host.vore_selected.escape_fail_absorbed_messages_prey) + host.vore_selected.primary_transfer_messages_owner = initial(host.vore_selected.primary_transfer_messages_owner) + host.vore_selected.primary_transfer_messages_prey = initial(host.vore_selected.primary_transfer_messages_prey) + host.vore_selected.secondary_transfer_messages_owner = initial(host.vore_selected.secondary_transfer_messages_owner) + host.vore_selected.secondary_transfer_messages_prey = initial(host.vore_selected.secondary_transfer_messages_prey) + host.vore_selected.digest_chance_messages_owner = initial(host.vore_selected.digest_chance_messages_owner) + host.vore_selected.digest_chance_messages_prey = initial(host.vore_selected.digest_chance_messages_prey) + host.vore_selected.absorb_chance_messages_owner = initial(host.vore_selected.absorb_chance_messages_owner) + host.vore_selected.absorb_chance_messages_prey = initial(host.vore_selected.absorb_chance_messages_prey) host.vore_selected.examine_messages = initial(host.vore_selected.examine_messages) host.vore_selected.examine_messages_absorbed = initial(host.vore_selected.examine_messages_absorbed) host.vore_selected.emote_lists = initial(host.vore_selected.emote_lists)