Skip to content

Commit

Permalink
hotfix pack version check
Browse files Browse the repository at this point in the history
  • Loading branch information
OpenNingia committed Feb 10, 2022
1 parent 56610fb commit 07f92fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l5r/api/character/books.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def get_missing_dependencies():
elif not loaded_pack.active:
log.api.warning(u"referenced pack %s is not active", br.id)
yield br
elif api.ver_cmp(loaded_pack.version, br.version):
elif api.ver_cmp(loaded_pack.version, br.version) < 0:
log.api.warning(u"referenced pack %s is outdated. referenced %s, loaded %s", br.id, br.version, loaded_pack.version)
yield br

Expand Down

0 comments on commit 07f92fb

Please sign in to comment.