
GameRule Manager
modEnhance controls for gamerules
byIAFEnvoy
34K
5
Compatibility
Supported Loaders
fabricforgeneoforge

Enhance controls for gamerules
This mod provide new ways to control gamerules.
There are 2 config files
Config file is at .minecraft/config/gamerule_manager/default.json. If this file is not existed, create it. Example:
{
//Apply to all dimension
"default": {
"doDaylightCycle": false,
"doMobSpawning": {
"value": false,
//Lock key is optional
"lock": true
},
"doTraderSpawning": {
"value": false,
"lock": false
}
},
"difficulty": "easy"
}
Config file is at .minecraft/config/gamerule_manager/specific.json. If this file is not existed, create it. Example:
{
//Dimension id, NOTE: You need to use "/gamerulemanager" to split out first to apply
"minecraft:overworld": {
"gamerules": {
"keepInventory": {
"value": true,
"lock": true
}
},
"difficulty": {
"value": "hard",
"lock": true
}
}
}
/gamerulemanager <create/remove/list>: Used to control whether specific dimension use standalone gamerules.
Once you split out, you can join that dimension and use /gamerule and /difficulty to change gamerule and difficulty
only for that dimension.