bots: Fixed incorrect computer play message

This commit is contained in:
fishfred 2020-03-27 15:10:46 +00:00 committed by showell
parent 0a0f9e9d21
commit 87b57f879c

View file

@ -650,7 +650,7 @@ To move subjects, send your message again, otherwise join the game using the lin
failed = False failed = False
for u in users: for u in users:
user = u.strip().lstrip('@**').rstrip('**') user = u.strip().lstrip('@**').rstrip('**')
if user == self.get_bot_username() or user == self.email: if (user == self.get_bot_username() or user == self.email) and not self.supports_computer:
self.send_reply( self.send_reply(
message, 'You cannot play against the computer in this game.') message, 'You cannot play against the computer in this game.')
if '@' not in user: if '@' not in user: