From efc5d32de72d78d3275e9884daec244c4088bcb8 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Wed, 30 Dec 2015 20:19:52 -0800 Subject: [PATCH] idiocy, part 2 --- plugins/quote.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/quote.py b/plugins/quote.py index 7854e60..95fc4d3 100644 --- a/plugins/quote.py +++ b/plugins/quote.py @@ -54,6 +54,9 @@ def quote(inp, nick='', chan='', db=None, admin=False): "random or [#n]th quote by or from <#chan>/adds or deletes " \ "quote" + if nick.startswith("Kaz"): + return None + db.execute("create table if not exists quote" "(chan, nick, add_nick, msg, time real, deleted default 0, " "primary key (chan, nick, msg))")