View Single Post
  #5  
Old 07-29-2009, 11:20 PM
Secrets's Avatar
Secrets
Demi-God
 
Join Date: May 2007
Location: b
Posts: 1,450
Default

Replace this for a crash fix with packet length and sending packets to the client, it's hackish but it fixes it

Code:
		if(Message.length() > 100)
			return;
in

Code:
ChatChannel::SendMessageToChannelFromIRC
below

Code:
					Client *ChannelClient = iterator.GetData();
Reply With Quote