Merge pull request #50 from Krapht/master

Fix for getNextAvailableRenderId() returning ids in use by vanilla - thanks krapht!
This commit is contained in:
Christian 2012-08-12 06:55:23 -07:00
commit 8a74a152e5
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 static final RenderingRegistry INSTANCE = new RenderingRegistry();
private int nextRenderId = 30; private int nextRenderId = 32;
private Map<Integer, ISimpleBlockRenderingHandler> blockRenderers = Maps.newHashMap(); private Map<Integer, ISimpleBlockRenderingHandler> blockRenderers = Maps.newHashMap();