Skip to content

Commit 080785a

Browse files
committed
spotless
1 parent 6c14ca0 commit 080785a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/com/gtnewhorizon/structurelib/ClientProxy.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import net.minecraft.client.particle.EntityFX;
1111
import net.minecraft.client.renderer.Tessellator;
1212
import net.minecraft.client.renderer.culling.Frustrum;
13-
import net.minecraft.client.renderer.entity.RenderManager;
1413
import net.minecraft.client.renderer.texture.TextureMap;
1514
import net.minecraft.entity.Entity;
1615
import net.minecraft.entity.player.EntityPlayer;
@@ -317,10 +316,11 @@ public int hashCode() {
317316
}
318317

319318
public boolean isInFrustrum(Frustrum frustrum) {
320-
return frustrum.isBoxInFrustum(x +0.25, y +0.25, z+0.25, x + 0.75, y+ 0.75, z + 0.75);
319+
return frustrum.isBoxInFrustum(x + 0.25, y + 0.25, z + 0.25, x + 0.75, y + 0.75, z + 0.75);
321320
}
322321

323-
public void draw(Tessellator tes, double eyeX, double eyeY, double eyeZ, int eyeXint, int eyeYint, int eyeZint) {
322+
public void draw(Tessellator tes, double eyeX, double eyeY, double eyeZ, int eyeXint, int eyeYint,
323+
int eyeZint) {
324324
double size = 0.5;
325325

326326
int brightness = w.blockExists(x, 0, z) ? w.getLightBrightnessForSkyBlocks(x, y, z, 0) : 0;

0 commit comments

Comments
 (0)