Skip to content

Commit

Permalink
Typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
IcarussOne committed Oct 5, 2024
1 parent 77b2902 commit 0b29cfe
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,11 +229,11 @@ private void renderHydraHead(@Nullable TileEntityTFTrophy trophy, float rotation

GlStateManager.scale(1f, -1f, -1f);

// we seem to be getting a 180-degree rotation here
// we seem to be getting a 180 degree rotation here
GlStateManager.rotate(rotation, 0F, 1F, 0F);
GlStateManager.rotate(180F, 0F, 1F, 0F);

GlStateManager.translate(0.0F, 1.0F, 1.5F);
GlStateManager.translate(0, onGround ? 1.0F : -0.0F, 1.5F);

// open mouth
if (onGround) {
Expand Down Expand Up @@ -306,7 +306,7 @@ private void renderUrGhastHead(@Nullable TileEntityTFTrophy trophy, float rotati
GlStateManager.rotate(rotation, 0F, 1F, 0F);
GlStateManager.rotate(180F, 0F, 1F, 0F);

GlStateManager.translate(0, 1F, 0F);
GlStateManager.translate(0.0F, 1.0F, 0.0F);

// render the head
float ageInTicks = 0F;
Expand Down

0 comments on commit 0b29cfe

Please sign in to comment.