it's in that place where i put that thing that time
All checks were successful
git.dreamfall.space/partybot/pipeline/head This commit looks good

This commit is contained in:
Morgan McMillian 2024-12-02 19:13:03 -08:00
parent 6d3f585fb7
commit eb532e34ac
2 changed files with 3 additions and 1 deletions

View file

@ -133,6 +133,8 @@ def upvote(room, user, prefs):
if karma.karma == 1000:
reply = "@" + user.username + " has achieved enlightenment. 🌄🧘"
send(room, reply)
elif karma.karma == 1337:
reply = "@" + user.username + " HACK THE PLANET! ☢️☠️🤪"
def downvote(room, user, prefs):
karma = Karma.query.filter(Karma.userid == user.id).one_or_none()

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='partybot',
version='0.2.1',
version='0.2.2',
py_modules=['partybot.models','partybot.pnutbot'],
install_requires=[
'PyYAML',