Skip to content
This repository was archived by the owner on Jun 8, 2023. It is now read-only.

Commit 340a756

Browse files
committed
Fix tense
Since the message was said in the past, make it past tense.
1 parent fffc3b6 commit 340a756

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/ambush.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ module.exports = (robot) ->
3838
if (ambushes = robot.brain.data.ambushes[msg.message.user.name])
3939
msg.send "Hey, " + msg.message.user.name + ", while you were out:"
4040
for ambush in ambushes
41-
msg.send ambush[0] + " says: " + ambush[1]
41+
msg.send ambush[0] + " said: " + ambush[1]
4242
msg.send "That's it. You were greatly missed."
4343
delete robot.brain.data.ambushes[msg.message.user.name]

0 commit comments

Comments
 (0)