File Details
commander-0.6.0-1.20.4-build.16-sources.jar
- B
- Jul 11, 2024
- 82.79 KB
- 4
File Name
commander-0.6.0-1.20.4-build.16-sources.jar
Supported Versions
What's New:
User Changes:
- Added
cmd:expressionto/execute if. - Updated EvalEx to v3.3.0. Release Notes...
- Removed
commander:store_expression_dataandcommander:store_nbt_dataJSON commands, as they can be easily replaced by the brigadier command and don't offer any advantages.
Example replacement:
{
"type": "commander:store_expression_data",
"target": "level",
"selector": "origin",
"key": "my_cool_data",
"expression": "random(0, 2)"
}
Becomes:
{
"type": "commander:commands",
"selector": "origin",
"commands": [
"cmd:data write level my_cool_data ${{random(0, 2)}}"
]
}

