[wpdev-commits] wolfpack ChangeLog,1.102,1.103 walking.cpp,1.153,1.154
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-10-10 12:19:21
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5190 Modified Files: ChangeLog walking.cpp Log Message: Fixes Index: walking.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/walking.cpp,v retrieving revision 1.153 retrieving revision 1.154 diff -C2 -d -r1.153 -r1.154 *** walking.cpp 3 Oct 2004 13:51:39 -0000 1.153 --- walking.cpp 10 Oct 2004 12:19:09 -0000 1.154 *************** *** 624,628 **** // If we are now out of range, remove from view (just to be sure) ! if (pChar->dist( otherplayer ) > otherplayer->visualRange()) { otherplayer->socket()->removeObject(pChar); } --- 624,628 ---- // If we are now out of range, remove from view (just to be sure) ! if (pChar->dist( otherplayer ) >= otherplayer->visualRange()) { otherplayer->socket()->removeObject(pChar); } Index: ChangeLog =================================================================== RCS file: /cvsroot/wpdev/wolfpack/ChangeLog,v retrieving revision 1.102 retrieving revision 1.103 diff -C2 -d -r1.102 -r1.103 *** ChangeLog 9 Oct 2004 14:32:21 -0000 1.102 --- ChangeLog 10 Oct 2004 12:19:09 -0000 1.103 *************** *** 37,40 **** --- 37,42 ---- - Removed old page system from core. - onCreate is now called for players on character creation. + - Fixed sending the tooltips of equipment when using the go menu or teleportation. + - Fixed "lingering" characters at the border of the screen if they walk away. - Fixed bug #0000348 ( Guards should kill instantly ) |