fix #2649
This commit is contained in:
parent
2f94b90f83
commit
fc3ebfbb8d
2 changed files with 2 additions and 1 deletions
|
@ -324,6 +324,7 @@ public class MappingRegistry {
|
||||||
BCLog.logger.log(Level.WARN, "Can't load an item - corrupt blueprint!");
|
BCLog.logger.log(Level.WARN, "Can't load an item - corrupt blueprint!");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
String name = sub.getString("name");
|
String name = sub.getString("name");
|
||||||
Item item = null;
|
Item item = null;
|
||||||
|
|
||||||
|
|
|
@ -64,8 +64,8 @@ public class BlockBuildcraftFluid extends BlockFluidClassic {
|
||||||
public void onNeighborBlockChange(World world, int x, int y, int z, Block block) {
|
public void onNeighborBlockChange(World world, int x, int y, int z, Block block) {
|
||||||
super.onNeighborBlockChange(world, x, y, z, block);
|
super.onNeighborBlockChange(world, x, y, z, block);
|
||||||
if (flammable && world.provider.dimensionId == -1) {
|
if (flammable && world.provider.dimensionId == -1) {
|
||||||
world.newExplosion(null, x, y, z, 4F, true, true);
|
|
||||||
world.setBlockToAir(x, y, z);
|
world.setBlockToAir(x, y, z);
|
||||||
|
world.newExplosion(null, x, y, z, 4F, true, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue