summaryrefslogtreecommitdiffstats
path: root/opt
diff options
context:
space:
mode:
authorSean B. Palmer <http://inamidst.com/sbp/>2008-02-23 12:16:43 +0000
committerSean B. Palmer <http://inamidst.com/sbp/>2008-02-23 12:16:43 +0000
commit2fb00589439a4efb3906d4e681e7ed815dcd180a (patch)
tree0a6b0ff1a4b5697fc7c3cb0aa3dc934246fcb874 /opt
parent7931fab14599b739c18c8f1ebcc24b75688dbc09 (diff)
downloadbot-2fb00589439a4efb3906d4e681e7ed815dcd180a.tar.gz
bot-2fb00589439a4efb3906d4e681e7ed815dcd180a.tar.bz2
bot-2fb00589439a4efb3906d4e681e7ed815dcd180a.zip
Lots of fixes, changes, and new goodies.
Diffstat (limited to 'opt')
-rw-r--r--opt/freenode.py16
1 files changed, 14 insertions, 2 deletions
diff --git a/opt/freenode.py b/opt/freenode.py
index 50e6b5d..b87a5e2 100644
--- a/opt/freenode.py
+++ b/opt/freenode.py
@@ -12,10 +12,22 @@ def replaced(phenny, input):
response = {
'cp': '.cp has been replaced by .u',
'pc': '.pc has been replaced by .u',
- 'unicode': '.unicode has been replaced by .u'
+ 'unicode': '.unicode has been replaced by .u',
+ 'compare': '.compare has been replaced by .gcs (googlecounts)',
+ 'map': 'the .map command has been removed; ask sbp for details',
+ 'acronym': 'the .acronym command has been removed; ask sbp for details',
+ 'img': 'the .img command has been removed; ask sbp for details',
+ 'v': '.v has been replaced by .val',
+ 'validate': '.validate has been replaced by .validate',
+ 'thesaurus': ".thesaurus hasn't been ported to my new codebase yet",
+ 'rate': ".rate hasn't been ported to my new codebase yet, sorry!",
+ 'rates': ".rates hasn't been ported to my new codebase yet, sorry!"
}[command]
phenny.reply(response)
-replaced.commands = ['cp', 'pc', 'unicode']
+replaced.commands = [
+ 'cp', 'pc', 'unicode', 'compare', 'map', 'acronym', 'img',
+ 'v', 'validate', 'thesaurus', 'rate', 'rates'
+]
replaced.priority = 'low'
if __name__ == '__main__':