From f9c782264bf20b9834fba5baeb18cd27d96726b8 Mon Sep 17 00:00:00 2001
From: cyan <>
Date: Tue, 9 Dec 2003 00:00:37 +0000
Subject: [PATCH] Ermn, bug involving servers that already exist wasn't totally
 fixed.

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

diff --git a/exec/load/ircd_unreg.js b/exec/load/ircd_unreg.js
index 3387655e03..1c8111c30f 100644
--- a/exec/load/ircd_unreg.js
+++ b/exec/load/ircd_unreg.js
@@ -170,7 +170,7 @@ function Unregistered_Commands() {
 				this.numeric461("SERVER");
 				break;
 			}
-			if (Servers[cmd[1].toUpperCase()]) {
+			if (Servers[cmd[1].toLowerCase()]) {
 				this.quit("Server already exists.");
 				return 0;
 			}
-- 
GitLab