You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pack indexes now have sourceGameVersion field, which you can define the version that the pack was originally made for. To use the pack on future versions, there are 2 ways:
Just build the pack with targetGameVersion == sourceGameVersion and load it to client. It should work, but future game versions may choose to remove "fixers" for old version, just like what they have done in 1.19.3.
Let Multipacks remap resources to new version. This can be defined in either multipacks.modifiers.json or Bundler (targetGameVersion argument).
User can choose to define in multipacks.modifiers.json if they are migrating from old game version to new game version. sourceGameVersion must be the same as what is defined in multipacks.modifiers.json.
The text was updated successfully, but these errors were encountered:
Pack indexes now have
sourceGameVersion
field, which you can define the version that the pack was originally made for. To use the pack on future versions, there are 2 ways:targetGameVersion == sourceGameVersion
and load it to client. It should work, but future game versions may choose to remove "fixers" for old version, just like what they have done in 1.19.3.multipacks.modifiers.json
orBundler
(targetGameVersion
argument).multipacks.modifiers.json
if they are migrating from old game version to new game version.sourceGameVersion
must be the same as what is defined inmultipacks.modifiers.json
.The text was updated successfully, but these errors were encountered: