diff --git a/core/src/io/anuke/mindustry/graphics/MinimapRenderer.java b/core/src/io/anuke/mindustry/graphics/MinimapRenderer.java index 13bca1f4eb..516203cee4 100644 --- a/core/src/io/anuke/mindustry/graphics/MinimapRenderer.java +++ b/core/src/io/anuke/mindustry/graphics/MinimapRenderer.java @@ -72,7 +72,7 @@ public class MinimapRenderer implements Disposable{ region = new TextureRegion(texture); } - public void drawEntities(float x, float y, float w, float h, boolean withLabels){ + public void drawEntities(float x, float y, float w, float h){ updateUnitArray(); float sz = baseSize * zoom; @@ -101,10 +101,6 @@ public class MinimapRenderer implements Disposable{ Draw.color(); } - public void drawEntities(float x, float y, float w, float h){ - drawEntities(x, y, w, h, false); - } - public TextureRegion getRegion(){ if(texture == null) return null;