[wpdev-commits] wolfpack/python char.cpp,1.96,1.97
Brought to you by:
rip,
thiagocorrea
|
From: <thi...@us...> - 2003-08-11 03:34:46
|
Update of /cvsroot/wpdev/wolfpack/python
In directory sc8-pr-cvs1:/tmp/cvs-serv2931/python
Modified Files:
char.cpp
Log Message:
- moved direction from cItem and cBaseChar to cUObject.
- Removed some dead code
- Notice that the SQL changed a bit due to the first item :)
Index: char.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/python/char.cpp,v
retrieving revision 1.96
retrieving revision 1.97
diff -C2 -d -r1.96 -r1.97
*** char.cpp 6 Aug 2003 00:20:33 -0000 1.96
--- char.cpp 11 Aug 2003 03:34:40 -0000 1.97
***************
*** 346,350 ****
P_CHAR pChar = getWpChar( pObj );
if( pChar )
! return PyInt_FromLong( chardir( pChar, self->pChar ) );
}
else if( PyTuple_Size( args ) >= 2 ) // Min 2
--- 346,350 ----
P_CHAR pChar = getWpChar( pObj );
if( pChar )
! return PyInt_FromLong( pChar->direction( self->pChar ) );
}
else if( PyTuple_Size( args ) >= 2 ) // Min 2
|