0
0
mirror of https://github.com/Wurst-Imperium/Wurst7.git synced 2024-09-20 09:16:20 +02:00

Fix BuildRandomHack rendering at extreme distances

Conflicts:
	src/main/java/net/wurstclient/hacks/BuildRandomHack.java
This commit is contained in:
Alexander01998 2021-05-18 17:01:32 +02:00
parent 9c6ef5ec5e
commit e0ee9cef1b

View File

@ -141,10 +141,15 @@ public final class BuildRandomHack extends Hack
GL11.glDisable(GL11.GL_LIGHTING);
GL11.glPushMatrix();
RenderUtils.applyRenderOffset();
RenderUtils.applyRegionalRenderOffset();
BlockPos camPos = RenderUtils.getCameraBlockPos();
int regionX = (camPos.getX() >> 9) * 512;
int regionZ = (camPos.getZ() >> 9) * 512;
// set position
GL11.glTranslated(lastPos.getX(), lastPos.getY(), lastPos.getZ());
GL11.glTranslated(lastPos.getX() - regionX, lastPos.getY(),
lastPos.getZ() - regionZ);
// get color
float red = partialTicks * 2F;