From eb6b979895c5b991feea5131d0235eabc324bb08 Mon Sep 17 00:00:00 2001 From: Verkister Date: Fri, 22 Sep 2023 09:02:36 +0300 Subject: [PATCH] Fixes the other missing exportpanel vars (#7021) --- .../code/modules/vore/eating/exportpanel_ch.dm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/modular_chomp/code/modules/vore/eating/exportpanel_ch.dm b/modular_chomp/code/modules/vore/eating/exportpanel_ch.dm index 750dce8f3f..6f24ec6519 100644 --- a/modular_chomp/code/modules/vore/eating/exportpanel_ch.dm +++ b/modular_chomp/code/modules/vore/eating/exportpanel_ch.dm @@ -176,6 +176,8 @@ belly_data["egg_type"] = B.egg_type belly_data["egg_name"] = B.egg_name belly_data["selective_preference"] = B.selective_preference + belly_data["recycling"] = B.recycling + belly_data["entrance_logs"] = B.entrance_logs // Sounds belly_data["is_wet"] = B.is_wet @@ -184,6 +186,7 @@ belly_data["vore_sound"] = B.vore_sound belly_data["release_sound"] = B.release_sound belly_data["sound_volume"] = B.sound_volume + belly_data["noise_freq"] = B.noise_freq // Visuals belly_data["affects_vore_sprites"] = B.affects_vore_sprites @@ -258,6 +261,16 @@ belly_data["gen_time_display"] = B.gen_time_display belly_data["custom_max_volume"] = B.custom_max_volume belly_data["vorefootsteps_sounds"] = B.vorefootsteps_sounds + belly_data["liquid_overlay"] = B.liquid_overlay + belly_data["max_liquid_level"] = B.max_liquid_level + belly_data["mush_overlay"] = B.mush_overlay + belly_data["mush_color"] = B.mush_color + belly_data["mush_alpha"] = B.mush_alpha + belly_data["max_mush"] = B.max_mush + belly_data["min_mush"] = B.min_mush + belly_data["item_mush_val"] = B.item_mush_val + belly_data["custom_reagentcolor"] = B.custom_reagentcolor + belly_data["custom_reagentalpha"] = B.custom_reagentalpha var/list/reagent_flags = list() for(var/flag_name in B.reagent_mode_flag_list)