View Single Post
  #2  
Old 10-23-2006, 03:31 PM
fathernitwit
Developer
 
Join Date: Jul 2004
Posts: 773
Default

a unified diff would be easier to work with, especially one which has file headers in it. This way I do not have to apply it by hand. Something like:
Code:
--- mob.cpp	2006-10-20 14:38:47.000000000 +0200
+++ ../source/zone/mob.cpp	2006-10-23 17:50:11.000000000 +0200
@@ -1149,9 +1149,9 @@
 	if (WholeZone)
 		entity_list.QueueClients(this, outapp, iIgnoreSelf);
 	else if(specific_target != NULL)
-		specific_target->QueuePacket(outapp);
+		specific_target->QueuePacket(outapp, false, Client::CLIENT_CONNECTED);
 	else if (this->IsClient())
-		this->CastToClient()->QueuePacket(outapp);
+		this->CastToClient()->QueuePacket(outapp, false, Client::CLIENT_CONNECTED);
 	safe_delete(outapp);
 }
Reply With Quote