Races: log the proper thing on a start

This commit is contained in:
Brian S. Stephan 2014-03-20 18:32:48 -05:00
parent 5fff9411a5
commit 1157fab28f
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ class Races(Module):
racer.save()
# create an event for this too
RaceUpdate.objects.create(racer=racer, update="Joined the race.")
RaceUpdate.objects.create(racer=racer, update="Started the race.")
return self.irc.reply(event, "you have started {0:s}.".format(race.name))
except Racer.DoesNotExist: