Not really a change.

This commit is contained in:
Eloraam 2011-08-05 14:58:18 +00:00
parent 6accd6dfee
commit f530d9f2b2
1 changed files with 2 additions and 1 deletions

View File

@ -91,7 +91,8 @@ public class ForgeHooksClient {
inWorld=false;
for(List l : renderTextureList) {
// TODO: call appropriate client hooks
GL11.glBindTexture(GL11.GL_TEXTURE_2D,(Integer)l.toArray()[0]);
Integer[] tn=(Integer[])l.toArray();
GL11.glBindTexture(GL11.GL_TEXTURE_2D,tn[0]);
Tessellator t=(Tessellator)tessellators.get(l);
t.draw();
}