Fixed getNextAvailableRenderId() returning ids in use by vanilla

This commit is contained in:
Krapht 2012-08-12 14:45:03 +02:00
parent f73e4b6169
commit c1dccae4b8
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ public class RenderingRegistry
{
private static final RenderingRegistry INSTANCE = new RenderingRegistry();
private int nextRenderId = 30;
private int nextRenderId = 32;
private Map<Integer, ISimpleBlockRenderingHandler> blockRenderers = Maps.newHashMap();