From f9a938f52060f58cf3dbb748fca09b8312b946dc Mon Sep 17 00:00:00 2001 From: Marceau MAUBERT Date: Wed, 22 May 2024 20:41:48 +0200 Subject: [PATCH] fix stylua bitching --- .../shared/hud_elements/tttvoice/pure_skin_voice.lua | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/gamemodes/terrortown/gamemode/shared/hud_elements/tttvoice/pure_skin_voice.lua b/gamemodes/terrortown/gamemode/shared/hud_elements/tttvoice/pure_skin_voice.lua index 4152918369..aa2c88af40 100644 --- a/gamemodes/terrortown/gamemode/shared/hud_elements/tttvoice/pure_skin_voice.lua +++ b/gamemodes/terrortown/gamemode/shared/hud_elements/tttvoice/pure_skin_voice.lua @@ -55,13 +55,7 @@ if CLIENT then local wNick = w - h - self.padding draw.Box(xPos + self.padding, yPos, w - self.padding, heightBar, color) - self:DrawLines( - xPos + self.padding, - yPos, - w - self.padding, - heightBar, - color.a - ) + self:DrawLines(xPos + self.padding, yPos, w - self.padding, heightBar, color.a) for i = 1, #data do local yValue = math.floor(data[i] * 0.5 * heightBar - 4 * self.scale)