Skip to content

Commit 62610e1

Browse files
authored
Merge pull request CloudBotIRC#103 from IlGnome/patch-12
Update dwi.py
2 parents 822e94b + 03a16c1 commit 62610e1

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

plugins/dwi.py

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,28 @@
2424
]
2525

2626

27+
Facepalmacros = ['https://i.imgur.com/iWKad22r.jpg',
28+
'https://i.imgur.com/3Jauxrw.jpg',
29+
'https://i.imgur.com/kFyKOgj.gif',
30+
'https://i.imgur.com/5JaFlhU.jpg?1',
31+
'https://i.imgur.com/qbnNXWy.gif',
32+
'https://i.imgur.com/h46ycmx.png',
33+
'https://i.imgur.com/gPNQzaf.jpg',
34+
'https://i.imgur.com/9I8A9C5.jpg']
2735

2836

2937
@hook.command('dwi','dealwithit')
3038

3139
def DWI(text, message):
32-
'''Tell some one in the channel to deal with it'''
40+
'''Tell some one in the channel to deal with it. File located in dwi.py'''
3341
PersonNeedsToDeal = text.strip()
3442

3543
message('{} {}'.format(random.choice(DWIphrases).format(PersonNeedsToDeal), random.choice(DWImacros)))
44+
45+
@hook.command('fp','facepalm')
46+
47+
def FP(text,message):
48+
''' Expresses your frustration with another user. File located in dwi.py'''
49+
FacePalmer = text.strip()
50+
51+
message('Dammit {} {}'.format(FacePalmer, random.choice(Facepalmacros)))

0 commit comments

Comments
 (0)