ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/socket/image.C
(Generate patch)

Comparing deliantra/server/socket/image.C (file contents):
Revision 1.33 by root, Wed Mar 14 16:23:26 2007 UTC vs.
Revision 1.36 by root, Thu Mar 15 16:25:45 2007 UTC

258 faces_sent[facenum] = true; 258 faces_sent[facenum] = true;
259 259
260 if (!facecache) 260 if (!facecache)
261 { 261 {
262 send_drawinfo ( 262 send_drawinfo (
263 "*** Please enable image/face caching in preferences or use a client that supports it.\n", 263 "\n"
264 "\n"
265 "***\n"
266 "*** WARNING:\n"
267 "*** Your client does not support face/image caching,\n"
268 "*** or it has been disabled. Face caching is mandatory\n"
269 "*** so please enable it or use a newer client.\n"
270 "***\n"
271 "*** Look at your client preferences:\n"
272 "***\n"
273 "*** CFPlus: all known versions automatically enable the facecache.\n"
274 "*** cfclient: use the -cache commandline option.\n"
275 "*** cfclient: map will not redraw automatically (bug).\n"
276 "*** gcfclient: use -cache commandline option, or enable\n"
277 "*** gcfclient: Client=>Configure=>Map & Image=>Cache Images.\n"
278 "*** jcrossclient: your client is broken, use CFPlus or gcfclient.\n"
279 "***\n"
280 "***\n",
264 NDI_RED 281 NDI_RED
265 ); 282 );
283 return;
266 return send_image (facenum); 284 //return send_image (facenum);
267 } 285 }
268 286
269 packet sl; 287 packet sl;
270 288
271 if (force_face0) 289 if (force_face0)
305 if (!d) 323 if (!d)
306 { 324 {
307 LOG (llevError, "client::send_image (%d) out of bounds??\n", facenum); 325 LOG (llevError, "client::send_image (%d) out of bounds??\n", facenum);
308 return; 326 return;
309 } 327 }
328
329 faces_sent[facenum] = true;
330
331 if (force_image_newmap)
332 force_newmap = true;
310 333
311 packet sl; 334 packet sl;
312 335
313 sl << (image2 ? "image2 " : "image ") 336 sl << (image2 ? "image2 " : "image ")
314 << uint32 (facenum); 337 << uint32 (facenum);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines