Skip to content

Commit 5f15fbd

Browse files
author
Tony Guntharp
committed
Merge pull request #244 from donthorp/kandan-174
Fixes #174. Prints a pithy message if you misuse /me
2 parents 6209287 + 19ff5c9 commit 5f15fbd

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
class Kandan.Plugins.MeAnnounce
22

33
@options:
4-
regex: /^/me /
4+
regex: /^/me( |$)/
55

66
@init: ()->
77
Kandan.Modifiers.register @options.regex, (message, activity) =>
88
actor = activity.user.username || activity.user.email
9-
message = message.replace @options.regex, "#{actor} "
9+
if message.length == 8 || message.length == 9
10+
message = "#{actor} whistles in the wind."
11+
else
12+
message = message.replace @options.regex, "#{actor} "
1013
return message

0 commit comments

Comments
 (0)