Skip to content

Commit

Permalink
Merge pull request #1352 from yueh/fix-1336
Browse files Browse the repository at this point in the history
Fixes part interface inventory model
  • Loading branch information
yueh committed May 2, 2015
2 parents 503d325 + 332ea08 commit da6b31c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/appeng/parts/misc/PartInterface.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ public void renderInventory( IPartRenderHelper rh, RenderBlocks renderer )
{
rh.setTexture( CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorBack.getIcon(), this.is.getIconIndex(), CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorSides.getIcon() );

rh.setBounds( 3, 3, 15, 13, 13, 16 );
rh.setBounds( 2, 2, 14, 14, 14, 16 );
rh.renderInventoryBox( renderer );

rh.setBounds( 2, 2, 14, 14, 14, 15 );
rh.setBounds( 5, 5, 12, 11, 11, 13 );
rh.renderInventoryBox( renderer );

rh.setBounds( 5, 5, 12, 11, 11, 14 );
rh.setBounds( 5, 5, 13, 11, 11, 14 );
rh.renderInventoryBox( renderer );
}

Expand Down

0 comments on commit da6b31c

Please sign in to comment.