Add replantCrops setting
add replantCrops setting, simmilar to replantNetherWart for the other crops.
This commit is contained in:
parent
33080a4e1c
commit
d2a046c8b4
@ -656,6 +656,11 @@ public final class Settings {
|
|||||||
*/
|
*/
|
||||||
public final Setting<Integer> exploreMaintainY = new Setting<>(64);
|
public final Setting<Integer> exploreMaintainY = new Setting<>(64);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Replant normal Crops while farming and leave cactus and sugarcane to regrow
|
||||||
|
*/
|
||||||
|
public final Setting<Boolean> replantCrops = new Setting<>(true);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Replant nether wart while farming
|
* Replant nether wart while farming
|
||||||
*/
|
*/
|
||||||
|
@ -112,13 +112,17 @@ public final class FarmProcess extends BaritoneProcessHelper implements IFarmPro
|
|||||||
SUGARCANE(Blocks.REEDS, null) {
|
SUGARCANE(Blocks.REEDS, null) {
|
||||||
@Override
|
@Override
|
||||||
public boolean readyToHarvest(World world, BlockPos pos, IBlockState state) {
|
public boolean readyToHarvest(World world, BlockPos pos, IBlockState state) {
|
||||||
|
if(Baritone.settings().replantCrops.value)
|
||||||
return world.getBlockState(pos.down()).getBlock() instanceof BlockReed;
|
return world.getBlockState(pos.down()).getBlock() instanceof BlockReed;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
CACTUS(Blocks.CACTUS, null) {
|
CACTUS(Blocks.CACTUS, null) {
|
||||||
@Override
|
@Override
|
||||||
public boolean readyToHarvest(World world, BlockPos pos, IBlockState state) {
|
public boolean readyToHarvest(World world, BlockPos pos, IBlockState state) {
|
||||||
|
if(Baritone.settings().replantCrops.value)
|
||||||
return world.getBlockState(pos.down()).getBlock() instanceof BlockCactus;
|
return world.getBlockState(pos.down()).getBlock() instanceof BlockCactus;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
public final Block block;
|
public final Block block;
|
||||||
@ -166,7 +170,9 @@ public final class FarmProcess extends BaritoneProcessHelper implements IFarmPro
|
|||||||
for (Harvest harvest : Harvest.values()) {
|
for (Harvest harvest : Harvest.values()) {
|
||||||
scan.add(harvest.block);
|
scan.add(harvest.block);
|
||||||
}
|
}
|
||||||
|
if (Baritone.settings().replantCrops.value) {
|
||||||
scan.add(Blocks.FARMLAND);
|
scan.add(Blocks.FARMLAND);
|
||||||
|
}
|
||||||
if (Baritone.settings().replantNetherWart.value) {
|
if (Baritone.settings().replantNetherWart.value) {
|
||||||
scan.add(Blocks.SOUL_SAND);
|
scan.add(Blocks.SOUL_SAND);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user