Simple Veinminer

Simple Veinminer

259k Downloads

whitelist

uhhams opened this issue ยท 5 comments

commented

how do I format the whitelist/blacklist so that it only allows logs and ores to be mined?

commented

Screen Shot 2022-03-29 at 7 02 22 PM

this is what I did (I know I didnt add the whitelist specifier)^^^
commented

The list should be composed of identifiers or tags between quotes, separated by commas

So if, for example, you want to filter dirt and stone you would use

list=[
    "minecraft:dirt",
    "minecraft:stone"
]

By default, the mod adds all vanilla ores (including deepslate variants) to the #c:ores tag
So to filter only ores and logs,

list=[
    "#c:ores",
    "#minecraft:logs"
]

can be used

When it comes to modded ores, you'll most likely need to filter each one individually like "mod1:silver_ore", "mod2:uranium", etc.

Hope this helps
If there's anything you don't understand, feel free to ask!

commented

thanks that worked ! :)

commented

I did the indiviual modding for the Mythic Metals mod but it doesnt seem to work in-game. do I have to specify some things In the confic to make it recognise it? Screen Shot 2022-04-16 at 1 44 31 PM

commented

"#" should only be used for tags

On your config, remove it for every block except for "#c:ores" and "#c:logs"