Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions summoner/protocol/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,11 @@ def activated_nodes(
that this route “activates” (i.e. should be added to the tape).
"""
if isinstance(event, Event) and event is not None and not self.is_arrow:
# standalone → only the source nodes
return self.source
if isinstance(event, Action.TEST):
return ()
else:
# standalone → only the source nodes
return self.source

# arrow route → pick based on the Action subtype
if isinstance(event, Action.MOVE):
Expand Down