Fixed NBT Crash.

This commit is contained in:
AlgorithmX2
2014-02-15 00:30:25 -06:00
parent 644217baf5
commit 91de4d56e4
+1 -1
View File
@@ -448,7 +448,7 @@ public class Platform
hash += 9 * lA.tagCount();
List<NBTBase> l = tagList( lA );
for (int x = 0; x < lA.tagCount(); x++)
for (int x = 0; x < l.size(); x++)
{
hash += NBTOrderlessHash( l.get( x ) );
}