Skip to content

Commit

Permalink
Update MobEspHack.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mdenials authored Nov 11, 2023
1 parent a16c495 commit 639afb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/net/wurstclient/hacks/MobEspHack.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ public final class MobEspHack extends Hack implements UpdateListener,
private final EspBoxSizeSetting boxSize = new EspBoxSizeSetting(
"\u00a7lAccurate\u00a7r mode shows the exact hitbox of each mob.\n"
+ "\u00a7lFancy\u00a7r mode shows slightly larger boxes that look better.");

private final ColorSetting color = new ColorSetting("Color",
"Mobs will be highlighted in this color.", Color.GREEN);
"Mobs will be highlighted in this color.", Color.YELLOW);

private final EntityFilterList entityFilters =
new EntityFilterList(FilterHostileSetting.genericVision(false),
Expand Down Expand Up @@ -231,7 +231,7 @@ private void renderTracers(MatrixStack matrixStack, float partialTicks,
{
float[] colorF = color.getColorF();
RenderSystem.setShader(GameRenderer::getPositionColorProgram);
if(monochrome.isChecked()) {
if(monoChrome.isChecked()) {
RenderSystem.setShaderColor(colorF[0], colorF[1], colorF[2], 1);
}
else {
Expand Down

0 comments on commit 639afb0

Please sign in to comment.