From 4ebfe766a8d5e57b4bbd72c26aae476f57f1abfc Mon Sep 17 00:00:00 2001 From: Joscha Date: Thu, 14 Dec 2017 16:14:25 +0000 Subject: [PATCH] Change "nasty" to something more nice --- plusone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plusone.py b/plusone.py index 99263f6..cb6f831 100644 --- a/plusone.py +++ b/plusone.py @@ -80,7 +80,7 @@ class PlusOne(yaboli.Bot): if nick is None: await self.room.send("You can't +1 nothing...", message.mid) 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: await self.db.add_point(nick) await self.room.send(f"Point for user {mention(nick)} registered.", message.mid)