diff options
Diffstat (limited to 'src/main/java/rosegoldaddons/features/GhostMacro.java')
-rw-r--r-- | src/main/java/rosegoldaddons/features/GhostMacro.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/rosegoldaddons/features/GhostMacro.java b/src/main/java/rosegoldaddons/features/GhostMacro.java index 1e9f467..a7cf2dc 100644 --- a/src/main/java/rosegoldaddons/features/GhostMacro.java +++ b/src/main/java/rosegoldaddons/features/GhostMacro.java @@ -30,7 +30,7 @@ public class GhostMacro { public void renderWorld(RenderWorldLastEvent event) { if (!Main.GhostMacro) return; if (creeper == null) return; - RenderUtils.drawEntityBox(creeper, Color.RED, true, event.partialTicks); + RenderUtils.drawEntityBox(creeper, Color.RED, Main.configFile.lineWidth, event.partialTicks); } private static Entity getClosestCreeper() { |