-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
bugSomething isn't workingSomething isn't workingcritical-for-v1We need this fixed for the first releaseWe need this fixed for the first release
Description
This can be tested with the following simple code:
class P1(Page):
@classmethod
def after_once(page, player):
move_to_page(player, P3)
class P2(Page):
pass
class P3(Page):
pass
class P4(Page):
@classmethod
def after_once(page, player):
move_to_page(player, P6)
class P5(Page):
pass
class P6(Page):
pass
page_order = [
P1,
P2,
P3,
P4,
P5,
P6,
]Instead of moving to P3 from P1, one is forwarded to P4. From there, one is forwarded to End.html rather than P6.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingcritical-for-v1We need this fixed for the first releaseWe need this fixed for the first release