Skip to content

Commit

Permalink
increase range to a chunk
Browse files Browse the repository at this point in the history
  • Loading branch information
ghzdude committed Mar 27, 2024
1 parent 81f17e9 commit 00ddf44
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public static void renderChestStack(double x, double y, double z, MetaTileEntity
if (stack.isEmpty() || count == 0 || !ConfigHolder.client.enableFancyChestRender)
return;

int range = 9;
int range = 16;
if (x > range || y > range || z > range ||
x < -range || y < -range || z < -range)
return;
Expand Down Expand Up @@ -178,7 +178,7 @@ public static void renderTankFluid(CCRenderState renderState, Matrix4 translatio
}

public static void renderTankAmount(double x, double y, double z, EnumFacing frontFacing, long amount) {
int range = 9;
int range = 16;
if (x > range || y > range || z > range ||
x < -range || y < -range || z < -range)
return;
Expand Down

0 comments on commit 00ddf44

Please sign in to comment.