From 2b45cd2b9b4dd8f2c7fce4aeece2846739c0cf59 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Fri, 3 Feb 2012 16:41:07 +1300 Subject: [PATCH] Fixed some stuff --- plugins/tell.py | 8 ++++---- plugins/users.py | 0 run.sh | 0 3 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 plugins/users.py delete mode 100755 run.sh diff --git a/plugins/tell.py b/plugins/tell.py index 08410df..09ff969 100644 --- a/plugins/tell.py +++ b/plugins/tell.py @@ -51,7 +51,7 @@ def tellinput(paraml, input=None, db=None, bot=None): @hook.command(autohelp=False) def showtells(inp, nick='', chan='', notice=None, db=None): - ".showtells -- view all pending tell messages (sent in PM)." + ".showtells -- view all pending tell messages (sent in a notice)." db_init(db) @@ -88,10 +88,10 @@ def tell(inp, nick='', chan='', db=None, input=None, notice=None): chan = 'a pm' if user_to == user_from.lower(): - notice("No. I'm not doing that. -.-") + notice("Nope.") return - if user_to.lower() == input.conn.nick.lower()": + if user_to.lower() == input.conn.nick.lower(): # user is looking for us, being a smartass notice("Thanks for the message, " + user_from + "!") return @@ -116,4 +116,4 @@ def tell(inp, nick='', chan='', db=None, input=None, notice=None): notice("Message has already been queued.") return - notice("I'll pass that along.") + notice("Your message has been sent!") diff --git a/plugins/users.py b/plugins/users.py deleted file mode 100644 index e69de29..0000000 diff --git a/run.sh b/run.sh deleted file mode 100755 index e69de29..0000000