Skip to content
Open
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
5 changes: 5 additions & 0 deletions FoxDot/lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,11 @@ def reassign_clock(self):
update_foxdot_clock(Clock)
instantiate_player_objects()

# Override help to avoid crashing
__help = help
def help(thing):
return __help(thing)

# Create a "now" time variable
now = var([0]).transform(lambda a: Clock.now())
nextbar = var([0]).transform(lambda a: Clock.next_bar())
Expand Down