Skip to content

Commit

Permalink
Bug fix in ModeTimer start() method. Rev MPF to v0.16.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
toomanybrians committed Apr 17, 2015
1 parent b3317c7 commit d3b6a97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mpf/system/modes.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ def start(self, **kwargs):
self.running = True

self.delay.remove('pause')
self.create_timer()
self._create_system_timer()

self.machine.events.post('timer_' + self.name + '_started',
ticks_remaining=self.mode.player[self.tick_var])
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = ('0', '16')
__version_info__ = ('0', '16', '1')
__version__ = '.'.join(__version_info__)

0 comments on commit d3b6a97

Please sign in to comment.