From aa223a7d91019c5fe30acc86b69d73530c4ddcf5 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 5 Mar 2006 00:08:48 +0000 Subject: Sped up introduction of nicks using vector::resize() rather than the craq++ loop (wtf was i thinking doing it that way?) Removed 'client connecting notices dont show locally during burst' -- this is silly as it doesnt work remotely and is pretty much pointless git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3460 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/channels.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/channels.h b/include/channels.h index 3947ffc2b..03c636d9b 100644 --- a/include/channels.h +++ b/include/channels.h @@ -270,7 +270,7 @@ class ucrec : public classbase */ chanrec *channel; - ucrec() { /* stub */ } + ucrec() : uc_modes(0), channel(NULL) { /* stub */ } virtual ~ucrec() { /* stub */ } }; -- cgit v1.2.3