Block Properties Mod — Configuration
Configuration Mechanics
The mod operates entirely through JSON files located in the Minecraft instance's config directory. Upon the first run, the mod will generate a folder structure to house these settings.
File Location
All customization files must be placed in:
.minecraft/config/BlockProperties/
You can create multiple .json files within this folder to organize your changes (e.g., vanilla_tweaks.json, modded_fixes.json). The mod will read all JSON files in this directory during the game's startup phase.
JSON Structure
The basic structure of a configuration file follows a key-value pair format where the key is the Block ID and the value is an object containing the properties to be modified.
{
"modid:block_name": {
"property_name": value
}
}
