Changed logic in Configuration to allow for extended block ID mods easier access to change that. Just use reflection to change Configuration.configBlocks to whatever length you want.

This commit is contained in:
LexManos 2012-03-22 19:39:15 -07:00
parent be1dd4934a
commit 55780422ae
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ public class Configuration
}
else
{
for (int j = /*Block.blocksList.length*/ 256 - 1; j >= 0; --j)
for (int j = configBlocks.length - 1; j >= 0; --j)
{
if (Block.blocksList[j] == null && !configBlocks[j])
{