A feedback area designed for scripting and mods suggestions and feedback. Please note bug reports and support issues will be removed.

2

Make pack format consistent with data version

1 Comments

Please sign in to leave a comment.

Sorted by oldest
  • 1
    Registered User commented
    Comment actions Permalink

    Here are some examples:

    #supported_formats compatible
    #a pack which is compatible from 1.21.5 to 25w46a
    "suppported_formats":[4325,4662]

    "suppported_formats":{"min_inclusive":4325,"max_inclusive":4662}

    #a pack which is compatible from 1.21.5 to future update
    "suppported_formats":[4325,-1]

    "suppported_formats":{"min_inclusive":4325,"max_inclusive":-1}

    #a pack which is only compatible in 1.21.5
    "suppported_formats":4325

    #min_format and max_format compatible
    #a pack which is compatible from 1.21.5 to 25w46a
    "min_format":4325,"max_format":4662

    #a pack which is compatible from 1.21.5 to future update
    "min_format":4325,"max_format":-1