Skip to content

Commit

Permalink
Remove debugger statement and fix disabledBars calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
theripper93 committed Jan 1, 2024
1 parent 29bf38e commit 85a756f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion scripts/core/components/main/movementHud.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export class MovementHud extends ArgonComponent {

updateMovement() {
if (!game.combat?.started) this.movementUsed = 0;
debugger
const movementColor = movementColors[Math.min(Math.floor((this.movementUsed) / this.movementMax), 2)]

const disabledBars = (this.movementUsed % this.movementMax) || 0;
Expand Down

0 comments on commit 85a756f

Please sign in to comment.