Parameter to limit Y level for automine (Non legit)
muniategui opened this issue ยท 8 comments
Describe your suggestion
I would like a parameter to limit Y level for example MaximumMineYLevel 50 will allow baritone only to mine on level 51 and above.
Settings
MaximumMineYLevel
Context
The request is done in order to bypass some Xray which places fake blocks in deeper Y levels and with that setting Baritone would be able to avoid them while Xray mining is performed.
Now 1.17.1 has Y0, how to import minerals below - 60, only dig minerals below 0
yeah and when are you guys planing to implement it I dont know the code but I think its fairly simple?
On
is this:
.filter(pos -> pos.getY() >= Baritone.settings().minYLevelWhileMining.value)
and when you add this:
.filter(pos -> pos.getY() <= Baritone.settings().maxYLevelWhileMining.value)
and the commands to adjust it + the settings() section it would work right?