From 3a350526b4b6c9a47f4a9aca7b3d82152b6be00c Mon Sep 17 00:00:00 2001 From: Stawberri Date: Thu, 11 Dec 2014 20:01:57 -0800 Subject: [PATCH] Removed reply_prefix from examples These methods now automatically add in reply_prefix in v3. --- skeleton/bots.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skeleton/bots.rb b/skeleton/bots.rb index 78fc597..3cf895c 100644 --- a/skeleton/bots.rb +++ b/skeleton/bots.rb @@ -39,12 +39,12 @@ class MyBot < Ebooks::Bot def on_mention(tweet) # Reply to a mention - # reply(tweet, meta(tweet).reply_prefix + "oh hullo") + # reply(tweet, "oh hullo") end def on_timeline(tweet) # Reply to a tweet in the bot's timeline - # reply(tweet, meta(tweet).reply_prefix + "nice tweet") + # reply(tweet, "nice tweet") end end