diff --git a/src/main/java/com/tangykiwi/kiwiclient/util/RenderUtils.java b/src/main/java/com/tangykiwi/kiwiclient/util/RenderUtils.java index 41438da..e539d43 100644 --- a/src/main/java/com/tangykiwi/kiwiclient/util/RenderUtils.java +++ b/src/main/java/com/tangykiwi/kiwiclient/util/RenderUtils.java @@ -98,7 +98,7 @@ public static void drawLine2D(MatrixStack matrices, float x1, float y1, float x2 GL11.glEnable(GL11.GL_LINE_SMOOTH); RenderSystem.setShader(ShaderProgramKeys.POSITION_COLOR); - BufferBuilder bufferBuilder = Tessellator.getInstance().begin(VertexFormat.DrawMode.LINES, + BufferBuilder bufferBuilder = Tessellator.getInstance().begin(VertexFormat.DrawMode.DEBUG_LINES, VertexFormats.POSITION_COLOR); bufferBuilder.vertex(matrix4f, x1, y1, 0).color(c); bufferBuilder.vertex(matrix4f, x2, y2, 0).color(c);