From 09ae47dcb1ab2f19e0f102c8f6efcbb94fbf7e2e Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Thu, 25 Sep 2003 07:13:05 +0000 Subject: [PATCH] Fixed branch limit removal (we're not an infinite loop). --- exec/ircd.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/exec/ircd.js b/exec/ircd.js index a4a53bc814..9089406fb7 100644 --- a/exec/ircd.js +++ b/exec/ircd.js @@ -923,10 +923,7 @@ for (pl in PLines) { } } -if(this.branch!=undefined) - branch.limit=0; // we're not an infinite loop. -else if (this.js!=undefined) - js.branch_limit=0; // new style branch limit definition +js.branch_limit=0; // we're not an infinite loop. ///// Main Loop ///// while (!server.terminated) { -- GitLab