Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dream-Master committed Jul 2, 2024
1 parent c934340 commit c8d24cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static void renderInv(WirelessPart p) {
final CCRenderState state = CCRenderState.instance();
state.reset();
state.useNormals = true;
state.pullLightmap();
state.pushLightmap();
state.startDrawing(7);
state.setPipeline(base_icont[0]);
BlockRenderer.renderCuboid(WirelessPart.baseBounds(0), 0);
Expand Down Expand Up @@ -157,7 +157,7 @@ public static void renderPearl(Vector3 pos, WirelessPart p) {
final CCRenderState state = CCRenderState.instance();
state.reset();
state.changeTexture("wrcbe_core:textures/hedronmap.png");
state.pullLightmap();
state.pushLightmap();
state.setColour(new ColourRGBA(light, light, light, 1).rgba());
state.startDrawing(4);
CCModelLibrary.icosahedron4.render();
Expand Down

0 comments on commit c8d24cb

Please sign in to comment.