summaryrefslogtreecommitdiff
path: root/plugins/quote.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/quote.py')
-rw-r--r--plugins/quote.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/quote.py b/plugins/quote.py
index a0a4a19a..96b61976 100644
--- a/plugins/quote.py
+++ b/plugins/quote.py
@@ -59,6 +59,12 @@ class Plugin(BasePlugin):
n = len(args)
if text.endswith(' '):
n += 1
+ if n == 2:
+ try:
+ if args[1][0] not in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '0'):
+ return False
+ except:
+ pass
nick = ''
if n == 3:
nick = args[1]