This commit is contained in:
Jesse Boyd
2018-01-25 15:32:25 +11:00
parent 785ba10ca1
commit d22c0349f7
5 changed files with 10 additions and 8 deletions

View File

@@ -45,7 +45,7 @@ public class SpongeAugmentedGenerator implements GenerationPopulator {
AugmentedUtils.generate(world.getName(), cx, cz, new DelegateLocalBlockQueue(null) {
@Override
public boolean setBlock(int x, int y, int z, int id, int data) {
terrain.setBlock(bx + x, y, bz + z, SpongeUtil.getBlockState(id, data), SpongeUtil.CAUSE);
terrain.setBlock(bx + x, y, bz + z, SpongeUtil.getBlockState(id, data));
return true;
}