![Spatial Harvesters [FORGE]](https://media.forgecdn.net/avatars/thumbnails/307/562/256/256/637388843729449788.png)
Crash after altering config file
Pentasis opened this issue ยท 2 comments
Version 0.11.7
Forge 36.1.0
I get this crashlog : https://paste.ee/p/CYTls
When I make 3 changes to the config file:
- I remove glowstone from the custom ores list.
- I set harvester_shard_chance = 0
- I add the following blacklist: blacklist_ores = [["minecraft", "ancient_debris"], ["minecraft", "nether_gold_ore"], ["minecraft", "nether_quartz_ore"]]
Added my configfile here for reference: https://pastebin.com/QNFL5QyY
Found it! It's the second one. It was trying to find a random number between 0 and harvester_shard_chance, which has to be at least 1 (try picking an integer between 0 and 0, exclusive) or it'll crash, which it of course did. I'll do a release soon with a check in place to avoid that. Thanks for letting me know!