ChiriVulpes / soulus

A Minecraft mod. You must sift through the ashes of the dead to restore life to the world.
https://soulus.info
Other
3 stars 3 forks source link

Negation in config selectors #74

Open wizard1399 opened 5 years ago

wizard1399 commented 5 years ago

Is it possible to use negation in creatures.json? Something along the lines of: "!overworld": { }

ChiriVulpes commented 5 years ago

No, but that's functionally identical to the following:

"*": { <the stuff you wanted to put in the negation> },
"overworld": { <undoing all that stuff> }

Since there is a workaround this is kind of low priority, but it's definitely a feature worth adding. Will get to it at some point.