Ticket #4486: diff.patch
File diff.patch, 851 bytes (added by Rach4d, 10 years ago) |
---|
-
.activity/SearchActivity.py
old new 79 79 colors=self.colors) 80 80 self._setup_presence_service() 81 81 82 if 'dotlist' in self.metadata: 83 self._restore() 84 else: 85 self._game.new_game() 82 self._game.new_game() 86 83 87 84 def _setup_toolbars(self): 88 85 """ Setup the toolbars. """ … … 267 264 def _receive_new_game(self, payload): 268 265 ''' Sharer can start a new game. ''' 269 266 dot_list = json_load(payload) 270 self._game. restore_game(dot_list)267 self._game.new_game() 271 268 272 269 def send_dot_click(self, dot, color): 273 270 ''' Send a dot click to all the players '''