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

Comparing deliantra/server/common/loader.C (file contents):
Revision 1.26 by elmex, Mon Dec 18 17:10:07 2006 UTC vs.
Revision 1.27 by root, Sat Dec 23 06:41:39 2006 UTC

1428 CMP_OUT (move_on); 1428 CMP_OUT (move_on);
1429 CMP_OUT (move_off); 1429 CMP_OUT (move_off);
1430 CMP_OUT (move_slow); 1430 CMP_OUT (move_slow);
1431 CMP_OUT (move_slow_penalty); 1431 CMP_OUT (move_slow_penalty);
1432 1432
1433 if (op->flags != tmp->flags) 1433 if (op->flag != tmp->flag)
1434 for (i = 0; i <= NUM_FLAGS; i++) 1434 for (i = 0; i <= NUM_FLAGS; i++)
1435 if (flag_names[i] && (QUERY_FLAG (op, i) != QUERY_FLAG (tmp, i))) 1435 if (flag_names [i] && op->flag [i] != tmp->flag [i])
1436 f.put (flag_names[i], QUERY_FLAG (op, i) ? "1" : "0"); 1436 f.put (flag_names [i], op->flag [i] ? "1" : "0");
1437 1437
1438 /* Save body locations */ 1438 /* Save body locations */
1439 for (i = 0; i < NUM_BODY_LOCATIONS; i++) 1439 for (i = 0; i < NUM_BODY_LOCATIONS; i++)
1440 if (op->body_info[i] != tmp->body_info[i]) 1440 if (op->body_info[i] != tmp->body_info[i])
1441 f.put (body_locations[i].save_name, op->body_info[i]); 1441 f.put (body_locations[i].save_name, op->body_info[i]);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines