[wpdev-commits] wolfpack ChangeLog,1.66,1.67 basechar.cpp,1.148,1.149
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-09-20 00:24:37
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15511 Modified Files: ChangeLog basechar.cpp Log Message: Changed mana+stamina from 10% to 50% on resurrection Index: basechar.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/basechar.cpp,v retrieving revision 1.148 retrieving revision 1.149 diff -C2 -d -r1.148 -r1.149 *** basechar.cpp 16 Sep 2004 01:40:16 -0000 1.148 --- basechar.cpp 20 Sep 2004 00:24:28 -0000 1.149 *************** *** 821,826 **** setDead( false ); hitpoints_ = QMAX( 1, ( Q_UINT16 ) ( 0.1 * maxHitpoints_ ) ); ! stamina_ = ( Q_UINT16 ) ( 0.1 * maxStamina_ ); ! mana_ = ( Q_UINT16 ) ( 0.1 * maxMana_ ); fight( 0 ); P_ITEM backpack = getBackpack(); // Make sure he has a backpack --- 821,826 ---- setDead( false ); hitpoints_ = QMAX( 1, ( Q_UINT16 ) ( 0.1 * maxHitpoints_ ) ); ! stamina_ = ( Q_UINT16 ) ( 0.5* maxStamina_ ); ! mana_ = ( Q_UINT16 ) ( 0.5 * maxMana_ ); fight( 0 ); P_ITEM backpack = getBackpack(); // Make sure he has a backpack Index: ChangeLog =================================================================== RCS file: /cvsroot/wpdev/wolfpack/ChangeLog,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -d -r1.66 -r1.67 *** ChangeLog 19 Sep 2004 23:41:36 -0000 1.66 --- ChangeLog 20 Sep 2004 00:24:28 -0000 1.67 *************** *** 33,36 **** --- 33,37 ---- - Fixed several python reference count issues. - Fixed a stamina loss bug on damage. + - Changed the amount of recovered mana and stamina from 10% to 50% on resurrection. Wolfpack 12.9.10 Beta (10. September 2004) |