softBlocks fix: BlockGrass -> BlockTallGrass
Quarry is not harvesting grass blocks (dirt with grass texture on top).
This commit is contained in:
parent
85fee2aef7
commit
85c0dbd721
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ public class BuildCraftCore {
|
||||||
@PostInit
|
@PostInit
|
||||||
public void postInit(FMLPostInitializationEvent event){
|
public void postInit(FMLPostInitializationEvent event){
|
||||||
for(Block block : Block.blocksList) {
|
for(Block block : Block.blocksList) {
|
||||||
if(block instanceof BlockFluid || block instanceof BlockGrass){
|
if(block instanceof BlockFluid || block instanceof BlockTallGrass){
|
||||||
BuildCraftAPI.softBlocks[block.blockID] = true;
|
BuildCraftAPI.softBlocks[block.blockID] = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue