Skip to content

Commit

Permalink
extend beacon beam lower
Browse files Browse the repository at this point in the history
  • Loading branch information
rfresh2 committed Jul 4, 2023
1 parent ae2870e commit 4c31050
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,10 @@ public void renderWaypointBeacon(final Waypoint waypoint, float tickDelta, Matri
}
EntityRenderDispatcher entityRenderDispatcher = mc.getEntityRenderDispatcher();
double viewX = entityRenderDispatcher.camera.getPos().getX();
double viewY = entityRenderDispatcher.camera.getPos().getY();
double viewZ = entityRenderDispatcher.camera.getPos().getZ();
final double x = waypointVec.x - viewX;
final double z = waypointVec.z - viewZ;
final double y = -viewY;
final double y = -100;
final int color = ModSettings.COLORS[waypoint.getColor()];
VertexConsumerProvider.Immediate entityVertexConsumers = mc.getBufferBuilders().getEntityVertexConsumers();
final long time = mc.world.getTime();
Expand Down

0 comments on commit 4c31050

Please sign in to comment.