From 1dd37d6cbee0a64e0364314c1fdf7798c900b8a0 Mon Sep 17 00:00:00 2001 From: GreenComfyTea Date: Mon, 17 Jan 2022 22:54:05 +0200 Subject: [PATCH] Add files via upload --- monster_has_hp_bar.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/monster_has_hp_bar.lua b/monster_has_hp_bar.lua index 2f5f3f1..f63ca51 100644 --- a/monster_has_hp_bar.lua +++ b/monster_has_hp_bar.lua @@ -345,7 +345,6 @@ function dps_meter() local dealt_damage_percent = player_total_damage / missing_monster_hp local dealt_damage_bar_width = width * dealt_damage_percent local rest_bar_width = width - dealt_damage_bar_width - local damage_text = string.format("%d/%d\t", player_total_damage, missing_monster_hp); local damage_percent_text = string.format("%5.1f%%", 100 * dealt_damage_percent);