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

Comparing deliantra/server/socket/loop.C (file contents):
Revision 1.74 by root, Tue Apr 22 07:28:05 2008 UTC vs.
Revision 1.77 by root, Tue May 6 16:55:26 2008 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002-2003,2007 Mark Wedel & The Crossfire Development Team 5 * Copyright (©) 2002-2003,2007 Mark Wedel & The Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen 6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify 8 * Deliantra is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
115client::tick () 115client::tick ()
116{ 116{
117 if (!pl || destroyed ()) 117 if (!pl || destroyed ())
118 return; 118 return;
119 119
120 pl->dirty = true;
121
120 /* Update the players stats once per tick. More efficient than 122 /* Update the players stats once per tick. More efficient than
121 * sending them whenever they change, and probably just as useful 123 * sending them whenever they change, and probably just as useful
122 */ 124 */
123 esrv_update_stats (pl); 125 esrv_update_stats (pl);
124 126
125 sint32 weight = pl->ob->client_weight (); 127 sint32 weight = pl->ob->client_weight ();
126 128
127 if (last_weight != weight) 129 if (last_weight != weight)
130 {
131 pl->ob->update_stats ();
128 esrv_update_item (UPD_WEIGHT, pl->ob, pl->ob); 132 esrv_update_item (UPD_WEIGHT, pl->ob, pl->ob);
133 }
129 134
130 draw_client_map (pl); 135 draw_client_map (pl);
131 136
132 if (update_look) 137 if (update_look)
133 esrv_draw_look (pl); 138 esrv_draw_look (pl);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines