diff options
| author | BuildTools <james.jenour@protonmail.com> | 2021-02-26 00:27:56 +0800 |
|---|---|---|
| committer | BuildTools <james.jenour@protonmail.com> | 2021-02-26 00:27:56 +0800 |
| commit | 9fa454949a58eb70c328ff75a37c3eb3755df6f4 (patch) | |
| tree | 6e5255ba865ca22b1c905f2f50930208e7076c5f /src/main/java/io/github/moulberry/notenoughupdates/overlays/TimersOverlay.java | |
| parent | 24aeb45f6e40ac0119b44735e816c64f25ac0ecc (diff) | |
| download | notenoughupdates-9fa454949a58eb70c328ff75a37c3eb3755df6f4.tar.gz notenoughupdates-9fa454949a58eb70c328ff75a37c3eb3755df6f4.tar.bz2 notenoughupdates-9fa454949a58eb70c328ff75a37c3eb3755df6f4.zip | |
gravtay
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/overlays/TimersOverlay.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/overlays/TimersOverlay.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/overlays/TimersOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/overlays/TimersOverlay.java index 49d992b9..da2b9bee 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/overlays/TimersOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/overlays/TimersOverlay.java @@ -102,7 +102,7 @@ public class TimersOverlay extends TextOverlay { private static final ItemStack COOKIE_ICON = new ItemStack(Items.cookie); @Override - protected void renderLine(String line, Vector2f position) { + protected void renderLine(String line, Vector2f position, boolean dummy) { ItemStack icon = null; String clean = Utils.cleanColour(line); @@ -152,7 +152,7 @@ public class TimersOverlay extends TextOverlay { position.x += 12; } - super.renderLine(line, position); + super.renderLine(line, position, dummy); } @Override |
