Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13585
Modified Files:
walking.cpp
Log Message:
fixes
Index: walking.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/walking.cpp,v
retrieving revision 1.154
retrieving revision 1.155
diff -C2 -d -r1.154 -r1.155
*** walking.cpp 10 Oct 2004 12:19:09 -0000 1.154
--- walking.cpp 10 Oct 2004 20:39:38 -0000 1.155
***************
*** 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);
}
|