Skip to content

Commit

Permalink
Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroksl committed Feb 18, 2025
1 parent 270312c commit 19fda2d
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import javax.annotation.ParametersAreNonnullByDefault;

import com.mojang.blaze3d.systems.RenderSystem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;

Expand Down Expand Up @@ -187,7 +186,15 @@ private void renderItem(
ms.scale(ITEM_RENDER_SCALE, ITEM_RENDER_SCALE, ITEM_RENDER_SCALE);

ItemRenderer itemRenderer = Minecraft.getInstance().getItemRenderer();
itemRenderer.renderStatic(stack, ItemDisplayContext.GROUND, combinedLight, combinedOverlay, ms, buffers, Minecraft.getInstance().level, 0);
itemRenderer.renderStatic(
stack,
ItemDisplayContext.GROUND,
combinedLight,
combinedOverlay,
ms,
buffers,
Minecraft.getInstance().level,
0);
ms.popPose();
}
}
Expand Down

0 comments on commit 19fda2d

Please sign in to comment.