From a76036722ea0734777498cb2951f3ff5ee6a1aae Mon Sep 17 00:00:00 2001 From: James Vega Date: Fri, 20 Feb 2004 22:45:27 +0000 Subject: [PATCH] -.-- .- -.-- --..-- -. --- .-- -- --- .-. ... . -..-. ..- -. -- --- .-. ... . ... ..- .--. .--. --- .-. - ... .--. ..- -. -.-. - ..- .- - .. --- -. .-.-.- --- plugins/Filter.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/plugins/Filter.py b/plugins/Filter.py index c3e81fbc4..946337dbf 100644 --- a/plugins/Filter.py +++ b/plugins/Filter.py @@ -278,6 +278,16 @@ class Filter(callbacks.Privmsg): "7" : "--...", "8" : "---..", "9" : "----.", + "." : ".-.-.-", + "," : "--..--", + ":" : "---...", + "?" : "..--..", + "'" : ".----.", + "-" : "-....-", + "/" : "-..-.", + '"' : ".-..-.", + "@" : ".--.-.", + "=" : "-...-" } _revcode = dict([(y, x) for (x, y) in _code.items()]) _unmorsere = re.compile('([.-]+)')