Notch builds
This commit is contained in:
@@ -125,9 +125,9 @@ public final class Settings {
|
||||
* Blocks that Baritone is allowed to place (as throwaway, for sneak bridging, pillaring, etc.)
|
||||
*/
|
||||
public final Setting<List<Item>> acceptableThrowawayItems = new Setting<>(new ArrayList<>(Arrays.asList(
|
||||
Item.getItemFromBlock(Blocks.DIRT),
|
||||
Item.getItemFromBlock(Blocks.COBBLESTONE),
|
||||
Item.getItemFromBlock(Blocks.NETHERRACK)
|
||||
Blocks.DIRT.asItem(),
|
||||
Blocks.COBBLESTONE.asItem(),
|
||||
Blocks.NETHERRACK.asItem()
|
||||
)));
|
||||
|
||||
/**
|
||||
|
||||
@@ -189,7 +189,7 @@ public final class MineProcess extends BaritoneProcessHelper implements IMinePro
|
||||
Set<Item> searchingFor = new HashSet<>();
|
||||
for (Block block : mining) {
|
||||
Item drop = block.getItemDropped(block.getDefaultState(), world, null, 0).asItem();
|
||||
Item ore = Item.getItemFromBlock(block);
|
||||
Item ore = block.asItem();
|
||||
searchingFor.add(drop);
|
||||
searchingFor.add(ore);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user