Minor Cleanup.

This commit is contained in:
AlgorithmX2
2014-08-03 00:06:19 -05:00
parent 1f2be6b1b3
commit ef40410511
2 changed files with 1 additions and 6 deletions
-3
View File
@@ -424,9 +424,6 @@ public class FacadePart implements IFacadePart
try
{
int color = ib.getColorFromItemStack( randomItem, 0 );
float r = (color >> 16 & 0xff) / 255F;
float g = (color >> 8 & 0xff) / 255F;
float b = (color & 0xff) / 255F;
GL11.glColor4f( 1.0f, 1.0f, 1.0f, 1.0F );
instance.setInvColor( color );
}