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);
}