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.9 by root, Thu Sep 7 14:21:04 2006 UTC vs.
Revision 1.10 by root, Fri Sep 8 16:51:42 2006 UTC

651 op->move_slow |= MOVE_WALK; 651 op->move_slow |= MOVE_WALK;
652 thawer.get (op->move_slow_penalty); 652 thawer.get (op->move_slow_penalty);
653 break; 653 break;
654 654
655 case KW_face: 655 case KW_face:
656 if (const char *str = thawer.get_str ())
657 op->face = &new_faces[FindFace (str, 0)]; 656 op->face = &new_faces[FindFace (thawer.get_str (), 0)];
658 else
659 op->face = 0;
660 break;
661 657
662 case KW_x: thawer.get (op->x); break; 658 case KW_x: thawer.get (op->x); break;
663 case KW_y: thawer.get (op->y); break; 659 case KW_y: thawer.get (op->y); break;
664 case KW_Str: // uppercase alias 660 case KW_Str: // uppercase alias
665 case KW_str: thawer.get (op->stats.Str); break; 661 case KW_str: thawer.get (op->stats.Str); break;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines