[wpdev-commits] wolfpack/network uosocket.cpp,1.295,1.296
Brought to you by:
rip,
thiagocorrea
|
From: <xs...@us...> - 2003-09-20 13:51:38
|
Update of /cvsroot/wpdev/wolfpack/network
In directory sc8-pr-cvs1:/tmp/cvs-serv11422/network
Modified Files:
uosocket.cpp
Log Message:
guard calling fix
Index: uosocket.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/network/uosocket.cpp,v
retrieving revision 1.295
retrieving revision 1.296
diff -C2 -d -r1.295 -r1.296
*** uosocket.cpp 20 Sep 2003 12:01:44 -0000 1.295
--- uosocket.cpp 20 Sep 2003 13:51:33 -0000 1.296
***************
*** 1936,1940 ****
pn->setNextMoveTime();
}
! else
{
dynamic_cast<P_NPC>(pc_i)->setNextMoveTime();
--- 1936,1940 ----
pn->setNextMoveTime();
}
! else if( pc_i->objectType() == enNPC )
{
dynamic_cast<P_NPC>(pc_i)->setNextMoveTime();
|