Changelog
Latest Forge is not supported due to many breaking changes, please use the recommended Forge version instead.
- Updated to 1.20.1 and for parity with Origins Fabric 1.10.0
Migration from 1.19.2 -> 1.20.1
Damage Type Registry
https://gist.github.com/apace100/bfbf82a8f9d6bd2db13e4feaf653a6b0
Material Condition
- The Material block condition is now deprecated, please use tags where you would've previously used this block condition.
Reach Attribute Name Differences
The forge:reach_distance
and forge:attack_range
attribute names have been changed to forge:block_reach
and forge:entity_reach
respectively. The two should function identically otherwise.
Fabric Resource Condition Differences
Origins Fabric gained the ability to have conditional power loading through Fabric's Resource Condition system in 1.10.0, because Fabric's Resource Condition system does not exist on Forge, we are instead using Forge's Conditional Data systems.
Migration Guide
To migrate, change the fabric:load_conditions
JSON object to a valid forge:conditions
JSON object. This object can also exist alongside the Fabric Load Conditions but in a multiple Origins Fabric won't catch the forge:conditions
JSON object as an excluded field.
Fabric's Load Conditions are stored inside an array, to achieve similar effects with allowing multiple conditions to be used on Forge, use a forge:and
as your condition type.
More info about Conditional Data can be found here. https://docs.minecraftforge.net/en/1.20.x/resources/server/conditional/
Example
Fabric
{
"type": "apoli:action_on_callback",
"entity_action_gained": {
"type": "apoli:execute_command",
"command": "say Hello world!"
},
"fabric:load_conditions": [
{
"condition": "apoli:any_namespace_loaded",
"namespaces": [
"eggolib"
]
}
]
}
Forge
{
"type": "apoli:action_on_callback",
"entity_action_gained": {
"type": "apoli:execute_command",
"command": "say Hello world!"
},
"forge:conditions": {
"type": "apoli:any_namespace_loaded",
"namespaces": [
"eggolib"
]
}
}
Dependencies
Files
90% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Metadata
Release channel
ReleaseVersion number
1.20.1-1.10.0.0Loaders
Game versions
1.20.1Downloads
361Publication date
September 12, 2023 at 6:21 AMPublisher
Pug
Maintainer