A light-weight utility mod for Minecraft.
Available for download (with description) here: https://www.curseforge.com/minecraft/mc-mods/essentials
There is a full coding style config here (please use): https://gist.github.com/Da-Technomancer/b9a5ab70985712e0d91961fb1af0e5a0
Summary:
- Use tabs over spaces.
- Comment your code.
- Put the { on the same line, but the } on a new line.
- Do not put spaces between control structures, parenthesesis, method names, or braces (ex:
if(condition){
, notif (condition) {
).
IF UPDATING THE GUIDEBOOK:
For the non-English guidebook, edit the JSON files (in Essentials/src/main/resources/assets/essentials/patchouli_books/manual/).
For the English guidebook: The guidebook files are stored in Essentials/src/main/resources/python/docs/src/ as txt files. Edit those files, NOT the book JSON files. The JSON files are auto-generated based on the txt files. For full details on the formatting for the txt files (probably more information than you need), see the top of https://github.com/Crossroads-Development/Essentials/blob/1.18/src/main/resources/python/docs/GenDocs.py.