Skip to content

Commit

Permalink
fixing rendering of molten metals through semi transparent blocks by …
Browse files Browse the repository at this point in the history
…moving it to render pass 0
  • Loading branch information
progwml6 committed Sep 20, 2013
1 parent eea1a52 commit 88c6e48
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tconstruct/blocks/LiquidMetalFinite.java
Expand Up @@ -24,7 +24,10 @@ public LiquidMetalFinite(int id, Fluid fluid, String texture)
this.texture = texture;
this.setCreativeTab(TConstructRegistry.blockTab);
}

@Override
public int getRenderBlockPass(){
return 0;
}
@Override
public void registerIcons (IconRegister iconRegister)
{
Expand Down

0 comments on commit 88c6e48

Please sign in to comment.