This commit is contained in:
asiekierka 2015-04-22 11:44:32 +02:00
parent 2f94b90f83
commit fc3ebfbb8d
2 changed files with 2 additions and 1 deletions

View file

@ -324,6 +324,7 @@ public class MappingRegistry {
BCLog.logger.log(Level.WARN, "Can't load an item - corrupt blueprint!");
continue;
}
String name = sub.getString("name");
Item item = null;

View file

@ -64,8 +64,8 @@ public class BlockBuildcraftFluid extends BlockFluidClassic {
public void onNeighborBlockChange(World world, int x, int y, int z, Block block) {
super.onNeighborBlockChange(world, x, y, z, block);
if (flammable && world.provider.dimensionId == -1) {
world.newExplosion(null, x, y, z, 4F, true, true);
world.setBlockToAir(x, y, z);
world.newExplosion(null, x, y, z, 4F, true, true);
}
}