We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d998115 commit 5c993c9Copy full SHA for 5c993c9
1 file changed
plugins/dwi.py
@@ -14,12 +14,14 @@
14
'https://j.gifs.com/L9mmYr.gif',
15
'https://i.imgur.com/nxMBqb4.gif']
16
17
-#This part currently broken
18
-DWIphrases = [ 'Looks like {} needs',
19
- 'Ever think that {} just needs to',
20
- 'Jesus fuck, {}, just',
+DWIphrases = [
+ 'Stop complaining, \x02{}\x02, and',
+ 'Jesus fuck \x02{}\x02, just',
+ 'Looks like \x02{}\x02 needs to',
21
+ 'Ever think that \x02{}\x02 just needs to'
22
+
23
- ]
24
+ ]
25
26
27
@@ -30,4 +32,4 @@ def DWI(text, message):
30
32
'''Tell some one in the channel to deal with it'''
31
33
PersonNeedsToDeal = text.strip()
34
- message('\x02 {}\x02 {}'.format(PersonNeedsToDeal, random.choice(DWImacros)))
35
+ message('{} {}'.format(random.choice(DWIphrases).format(PersonNeedsToDeal), random.choice(DWImacros)))
0 commit comments