From c17af38a7341e71d893b2e81146cda9cdbf157da Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Thu, 25 Nov 2004 21:21:23 +0000
Subject: [PATCH] Inly load() irclib.js if it doesn't already exist in this
 context.

---
 exec/ircwho.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/exec/ircwho.js b/exec/ircwho.js
index ed49a51ae1..b3f9b0a571 100644
--- a/exec/ircwho.js
+++ b/exec/ircwho.js
@@ -2,7 +2,8 @@
 
 /* $Id$ */
 
-load("irclib.js");	// Thanks Cyan!
+if(this.IRCLIB_REVISION==undefined)
+	load("irclib.js");	// Thanks Cyan!
 
 var ircserver="vert.synchro.net";
 var channel="#synchronet";
-- 
GitLab