Update of /cvsroot/wpdev/wolfpack/python
In directory sc8-pr-cvs1:/tmp/cvs-serv13883/python
Modified Files:
char.cpp
Log Message:
definition tags also use setProperty
Index: char.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/char.cpp,v
retrieving revision 1.97
retrieving revision 1.98
diff -C2 -d -r1.97 -r1.98
*** char.cpp 11 Aug 2003 03:34:40 -0000 1.97
--- char.cpp 11 Aug 2003 12:17:58 -0000 1.98
***************
*** 1367,1371 ****
pChar->addPet( npc );
! npc->setNextMoveTime();
return PyTrue;
--- 1367,1372 ----
pChar->addPet( npc );
! npc->setWanderType( enFollowTarget );
! npc->setWanderFollowTarget( pChar );
return PyTrue;
***************
*** 1418,1423 ****
return PyFalse;
! npc->findPath( pos );
! npc->setNextMoveTime();
return PyTrue;
--- 1419,1424 ----
return PyFalse;
! npc->setWanderType( enDestination );
! npc->setWanderDestination( pos );
return PyTrue;
|