More changes

This commit is contained in:
StevenRS11
2014-01-13 20:42:43 -05:00
parent 7dadef953d
commit 5f7d4ce971
4 changed files with 19 additions and 6 deletions

View File

@@ -379,7 +379,9 @@ public class Schematic {
for (dx = 0; dx < width; dx++)
{
//In the future, we might want to make this more efficient by building whole chunks at a time
if(blocks[index]!=0)
//Ignore air blocks
//TODO
//if(blocks[index]!=0)
{
setBlockDirectly(world, x + dx, y + dy, z + dz, blocks[index], metadata[index]);
}