Compatibility | Minecraft 1.16 |
Tags |
We're a community of creatives sharing everything Minecraft! Even if you don't post your own creations, we appreciate feedback on ours. Join us!
10,353 | People Online |
3,074,494 | Total Members |
2,421,475 | Minecraft Submissions |
2,589,958,272 | Total Submission Views |
438,371,587 | Downloads |
- pack format is set to 1. Setting to 6 will let it "load"
- all of the crafting recipes look like they have spaces and parens in them. I don't think minecraft likes these, as only the first recipe that does not, the elder guardian one, works.
1) extract to a folder. Go to pack.mcmeta in notepad, change pack_format's value to 6 (instead of 1)
2) In the data/crafting/recipes folder, replace all spaces with _ and remove left and right parenthesis. If you have bash, I ran these commands to have this work in the folder:
for i in *.json; do mv "$i" "${i/ /_}"; done
for i in *.json; do mv "$i" "${i/(/}"; done
for i in *.json; do mv "$i" "${i/)/}"; done