Merge branch 'master' of git.incorporeal.org:dr.botzo

This commit is contained in:
Brian S. Stephan 2011-02-26 19:10:26 -06:00
commit 250dd6c4b0
1 changed files with 2 additions and 2 deletions

View File

@ -259,9 +259,9 @@ class Storycraft(Module):
self._add_player_to_game(game_id, nick, userhost)
# tell the control channel
self.sendmsg(connection, master_channel, '{0:s} created a game of storycraft - do \'!storycraft join game {1:d}\' to take part!'.format(nick, game_id))
self.sendmsg(connection, master_channel, '{0:s} created a game of storycraft - do \'!storycraft game {1:d} join\' to take part!'.format(nick, game_id))
return 'Game #{0:d} has been created. When everyone has joined, do \'!storycraft start game {0:d}\''.format(game_id)
return 'Game #{0:d} has been created. When everyone has joined, do \'!storycraft game {0:d} start\''.format(game_id)
else:
return 'Error creating game.'
else: