mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Loading the cardset to the cache at the start, to prevent errors when the preview switches cardset type.
This commit is contained in:
parent
3547c5ad0a
commit
be12039d0f
1 changed files with 3 additions and 2 deletions
|
@ -400,12 +400,13 @@ Cardsets package is up to date.
|
|||
|
||||
# load cardset
|
||||
progress = app.intro.progress
|
||||
if not app.loadCardset(cardset, progress=progress, update=1):
|
||||
if not app.loadCardset(cardset, progress=progress, id=app.opt.last_gameid):
|
||||
if not cardset:
|
||||
for cardset in app.cardset_manager.getAll():
|
||||
progress.reset()
|
||||
|
||||
if app.loadCardset(cardset, progress=progress, update=1):
|
||||
if app.loadCardset(cardset, progress=progress,
|
||||
id=app.opt.last_gameid):
|
||||
break
|
||||
else:
|
||||
fatal_no_cardsets(app)
|
||||
|
|
Loading…
Add table
Reference in a new issue