We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a137e10 commit d938043Copy full SHA for d938043
morph/newMorphHelper.py
@@ -37,14 +37,14 @@ def focus(n): return n[focusName()]
37
38
39
########## 6 parent deck pulls new cards from all children instead of sequentially (ie. mostly first)
40
-def my_fillNew(self, _old):
+def my_fillNew(self, recursing=False, _old=None):
41
"""If 'new card merged fill' is enabled for the current deck, when we refill we
42
pull from all child decks, sort combined pool of cards, then limit.
43
If disabled, do the standard sequential fill method"""
44
def C(key): return cfg(key, None, self.col.decks.active()[0])
45
46
if not C('new card merged fill'):
47
- return _old(self)
+ return _old(self, recursing)
48
49
if self._newQueue:
50
return True
0 commit comments