From 394cbefaa57c4df6544c7137010496395dc6e263 Mon Sep 17 00:00:00 2001
From: mcmlxxix <>
Date: Thu, 25 Aug 2011 19:48:44 +0000
Subject: [PATCH] fix previous fix

---
 exec/load/ircbot_commands.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exec/load/ircbot_commands.js b/exec/load/ircbot_commands.js
index d58f01eac5..dbe35c8b0f 100644
--- a/exec/load/ircbot_commands.js
+++ b/exec/load/ircbot_commands.js
@@ -259,7 +259,7 @@ Bot_Commands["QUOTE"].command = function (target,onick,ouh,srv,lvl,cmd) {
 		srv.o(target,"Couldn't find a quote that matches your criteria.");
 		return;
 	}
-	srv.o(target, quotes[random(Quotes.length)]);
+	srv.o(target, Quotes[random(Quotes.length)]);
 	return;
 }
 
-- 
GitLab