Change "nasty" to something more nice

This commit is contained in:
Joscha 2017-12-14 16:14:25 +00:00
parent c60203b126
commit 4ebfe766a8

View file

@ -80,7 +80,7 @@ class PlusOne(yaboli.Bot):
if nick is None: if nick is None:
await self.room.send("You can't +1 nothing...", message.mid) await self.room.send("You can't +1 nothing...", message.mid)
elif similar(nick, message.sender.nick): elif similar(nick, message.sender.nick):
await self.room.send("Don't +1 yourself, that's... nasty.", message.mid) await self.room.send("Don't +1 yourself, that's... It just doesn't work that way, alright?", message.mid)
else: else:
await self.db.add_point(nick) await self.db.add_point(nick)
await self.room.send(f"Point for user {mention(nick)} registered.", message.mid) await self.room.send(f"Point for user {mention(nick)} registered.", message.mid)