From 43b2946939c4dee2b0650deebd277f5a8557028a Mon Sep 17 00:00:00 2001 From: GreenComfyTea Date: Tue, 19 Sep 2023 13:49:55 +0300 Subject: [PATCH] Set default Buff.update Timer to 0.5 --- reframework/autorun/MHR_Overlay/Game_Handler/time.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reframework/autorun/MHR_Overlay/Game_Handler/time.lua b/reframework/autorun/MHR_Overlay/Game_Handler/time.lua index d381753..237d13e 100644 --- a/reframework/autorun/MHR_Overlay/Game_Handler/time.lua +++ b/reframework/autorun/MHR_Overlay/Game_Handler/time.lua @@ -103,7 +103,7 @@ function this.init_global_timers() this.new_timer(this.update_quest_time, 1 / 60); this.new_timer(players.update_players, 0.5); this.new_timer(players.update_myself_position, 1); - this.new_timer(buffs.update, 1/60); + this.new_timer(buffs.update, 0.5); this.new_timer(player_info.update, 0.5); end