diff --git a/PBot/Plugins/Quotegrabs/Quotegrabs_SQLite.pm b/PBot/Plugins/Quotegrabs/Quotegrabs_SQLite.pm index 1f91ac91..0f33e570 100644 --- a/PBot/Plugins/Quotegrabs/Quotegrabs_SQLite.pm +++ b/PBot/Plugins/Quotegrabs/Quotegrabs_SQLite.pm @@ -121,7 +121,7 @@ sub get_random_quotegrab { if(defined $nick) { $sql .= $where . 'nick LIKE ? '; - push @params, "%$nick%"; + push @params, "$nick"; $where = ''; $and = 'AND '; }