diff --git a/src/client/ui/templates/hud/hud.js b/src/client/ui/templates/hud/hud.js index 304c4b7e..d0c29283 100644 --- a/src/client/ui/templates/hud/hud.js +++ b/src/client/ui/templates/hud/hud.js @@ -107,9 +107,8 @@ define([ let elapsed = quickItem.cdMax - quickItem.cd; let width = 1 - (elapsed / quickItem.cdMax); - if (width <= 0) { + if (width <= 0) width = 0; - } width = Math.ceil((width * 100) / 4) * 4;