From 5125de6701e7339219d2076b25aa62201c6b74b9 Mon Sep 17 00:00:00 2001 From: GreenComfyTea Date: Thu, 17 Aug 2023 12:19:38 +0300 Subject: [PATCH] Fix 2nd buddy appearing on online quests --- .../autorun/MHR_Overlay/Game_Handler/quest_status.lua | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/reframework/autorun/MHR_Overlay/Game_Handler/quest_status.lua b/reframework/autorun/MHR_Overlay/Game_Handler/quest_status.lua index 67b9328..d9effc1 100644 --- a/reframework/autorun/MHR_Overlay/Game_Handler/quest_status.lua +++ b/reframework/autorun/MHR_Overlay/Game_Handler/quest_status.lua @@ -158,8 +158,17 @@ function this.set_flow_state(new_flow_state) damage_meter_UI.last_displayed_players = {}; + elseif this.flow_state == this.flow_states.LOADING_QUEST then + players.init(); + non_players.init(); + small_monster.init_list(); + large_monster.init_list(); + env_creature.init_list(); + + damage_meter_UI.last_displayed_players = {}; + + this.get_max_cart_count(); elseif this.flow_state >= this.flow_states.LOADING_QUEST then - this.update_cart_count(); this.get_max_cart_count(); end