Digital Miner won't mine things using the Tag Filter
TheOwnerOfThis opened this issue ยท 5 comments
Issue description:
The digital miner won't mine anything use the Tag Filter, but works fine if I use itemstack with the ore.
Steps to reproduce:
- Open the digital miner config
- Click new filter and then tag
- Enter a tag of an ore, such as *Diamond or *Iron
- Save and start the digital miner
Version:
Forge: 35.1.11
Mekanism: 10.0.18
MC Version: 1.16.4
Other relevant version: ?
If a (crash)log is relevant for this issue, link it here:
Latest log: https://www.dropbox.com/s/tz1zccoqqveq67p/latest.log?dl=1
Video: https://www.dropbox.com/s/e97if9eh2t8h8l0/Base%20Profile%202020.12.13%20-%2012.21.35.03.mp4?dl=0
Additional Information:
I do have a claiming mod but unless it's doing something very finicky, the digital miner will mine ores using the itemstack option.
The claiming mod is FTB Chunks
Mod Version: 1604.2.1.50
Are you actually using capital letters or not in the filters given tags don't support capitals (it is on my list of things to do to make it so it auto lowercases the string input, but I don't think it currently does so). For example the full tag for diamond would be forge:ores/diamond
though using the pseudo regex *diamond
should in theory work, but *Diamond
probably won't as I don't think it currently auto converts to *diamond
from *Diamond
.
Oh, I didn't know that *diamond works.
Well it will also grab any other matching things like forge:storage_blocks/diamond
which may not be desired but it will match forge:ores/diamond
as part of the match.
Are you actually using capital letters or not in the filters given tags don't support capitals
It seems to be that writing *diamond works, and *Diamond does not. Thank you.