Skip to content

Commit

Permalink
fix: 🐛 Fixed issue where tank / battery upgrades could be swapped for…
Browse files Browse the repository at this point in the history
… stack upgrades making the resulting capacity less than their contents and break rendering. Trying this will now show an error message.
  • Loading branch information
P3pp3rF1y committed Sep 28, 2024
1 parent 1f1f90a commit ec88b0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ var generateModMetadata = tasks.register("generateModMetadata", ProcessResources
mod_issue_tracker_url: mod_issue_tracker_url, mod_logo_file: mod_logo_file, mod_credits: mod_credits,
mod_authors : mod_authors, mod_description: mod_description, mod_display_url: mod_display_url,
mod_full_version : "${project.mod_version}.${getBuildNumber()}${getStable()}",
sc_version :"[" + sc_version.substring(sc_version.indexOf("-") + 1, sc_version.lastIndexOf(',')) + ".+,)"
sc_version :"[" + sc_version.substring(sc_version.indexOf("-") + 1, sc_version.lastIndexOf(',')) + ",)"
]
inputs.properties replaceProperties

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ loader_version_range=[4,)
mod_id=sophisticatedbackpacks
mod_name=Sophisticated Backpacks
mod_license=GNU General Public License v3.0
mod_version=3.20.15
mod_version=3.20.16
mod_group_id=sophisticatedbackpacks
mod_authors=P3pp3rF1y, Ridanisaurus
mod_description=Fancy and functional backpacks.
Expand All @@ -34,7 +34,7 @@ chipped_cf_file_id=5506938
resourcefullib_cf_file_id=5483169
athena_cf_file_id=5431579
curios_cf_file_id=5546342
sc_version=[1.21-0.6.39,1.22)
sc_version=[1.21-0.6.41,1.22)

#publish
curseforge_id=422301
Expand Down

0 comments on commit ec88b0a

Please sign in to comment.