We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d998115 commit 60f7fb0Copy full SHA for 60f7fb0
1 file changed
plugins/foaas.py
@@ -64,13 +64,13 @@
64
65
headers = {'Accept' : 'text/plain'}
66
67
-@hook.command('fos','fuckoff','foaas')
+@hook.command('fos','fuckoff','foaas', autohelp = False)
68
def foaas(text, nick, message):
69
'''fos [name] to tell some one to fuck off or just .fos for a generic fuckoff'''
70
Fuckee = text.strip()
71
Fucker = nick
72
if Fuckee == '':
73
- r = requests.get('http://www.foaas.com/' + str(random.choice(SingleFuckList)) + Fucker,headers=headers)
+ r = requests.get('http://www.foaas.com/' + str(random.choice(SingleFuckList)) + '/' + Fucker,headers=headers)
74
out = r.text
75
message(out)
76
else:
0 commit comments