diff options
| author | DreamMasterXXL <dream-master@gmx.net> | 2021-10-19 18:22:50 +0200 |
|---|---|---|
| committer | DreamMasterXXL <dream-master@gmx.net> | 2021-10-19 18:22:50 +0200 |
| commit | 0fb065fad9133750872e8fa203bd29cd3311486f (patch) | |
| tree | 0581bfe565d1b452a48f110b1a877cb65412743e /src/main/java/gregtech/common/tileentities/machines/multi | |
| parent | 5b532cdb6b37de4068ae147fb5089c884fc45091 (diff) | |
| parent | 7d353267114e4f2d8ff42a80f0a480db470abca6 (diff) | |
| download | GT5-Unofficial-0fb065fad9133750872e8fa203bd29cd3311486f.tar.gz GT5-Unofficial-0fb065fad9133750872e8fa203bd29cd3311486f.tar.bz2 GT5-Unofficial-0fb065fad9133750872e8fa203bd29cd3311486f.zip | |
Merge branch 'experimental' of github.com:GTNewHorizons/GT5-Unofficial into experimental
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines/multi')
| -rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java index b168e44c41..1643eb4f8d 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_OreDrillingPlantBase.java @@ -123,7 +123,7 @@ public abstract class GT_MetaTileEntity_OreDrillingPlantBase extends GT_MetaTile } if (oreBlock != null && oreBlock != Blocks.air) { Collection<ItemStack> oreBlockDrops = getBlockDrops(oreBlock, oreBlockPos.chunkPosX, oreBlockPos.chunkPosY, oreBlockPos.chunkPosZ); - getBaseMetaTileEntity().getWorld().setBlockToAir(oreBlockPos.chunkPosX, oreBlockPos.chunkPosY, oreBlockPos.chunkPosZ); + getBaseMetaTileEntity().getWorld().setBlock(oreBlockPos.chunkPosX, oreBlockPos.chunkPosY, oreBlockPos.chunkPosZ, Blocks.cobblestone); mOutputItems = getOutputByDrops(oreBlockDrops); } return true; |
