diff --git a/partybot/pnutbot.py b/partybot/pnutbot.py index 505c61a..0476c8d 100644 --- a/partybot/pnutbot.py +++ b/partybot/pnutbot.py @@ -130,6 +130,9 @@ def upvote(room, user, prefs): reply = prefix + "@" + user.username reply += " now has " + str(karma.karma) + " karma in this channel" send(room, reply) + if karma.karma == 1000: + reply = "@" + user.username + " has achieved enlightenment. 🌄🧘" + send(room, reply) def downvote(room, user, prefs): karma = Karma.query.filter(Karma.userid == user.id).one_or_none()