Skip to content

Commit

Permalink
boosts: swap (de)buff icons in compat view
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam- committed Jun 29, 2022
1 parent 16cabcb commit 6751d8f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public Dimension render(Graphics2D graphics)
if (time != -1)
{
drawBoost(graphics, fontMetrics, fontHeight,
BUFFED,
DEBUFFED,
time < 10 ? Color.RED.brighter() : Color.WHITE,
Integer.toString(plugin.getChangeTime(time)));
}
Expand All @@ -112,7 +112,7 @@ public Dimension render(Graphics2D graphics)
if (time != -1)
{
drawBoost(graphics, fontMetrics, fontHeight,
DEBUFFED,
BUFFED,
time < 10 ? Color.RED.brighter() : Color.WHITE,
Integer.toString(plugin.getChangeTime(time)));
}
Expand Down

0 comments on commit 6751d8f

Please sign in to comment.