Skip to content

Commit

Permalink
Ignore needs_attention flag when updating in place
Browse files Browse the repository at this point in the history
  • Loading branch information
Caedis committed May 19, 2024
1 parent e126b93 commit ea16905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gtnh/modpack_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ async def update_pack_inplace(

# delete older versions
for old_version in mod.versions:
if old_version.version_tag == version.version_tag and not mod.needs_attention:
if old_version.version_tag == version.version_tag:
continue
to_remove = os.path.basename(get_asset_version_cache_location(mod, old_version))
for file in active_mods:
Expand Down

0 comments on commit ea16905

Please sign in to comment.