[wpdev-commits] wolfpack basechar.cpp,1.127,1.128
Brought to you by:
rip,
thiagocorrea
From: Richard M. <dr...@us...> - 2004-08-12 19:01:23
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13216 Modified Files: basechar.cpp Log Message: Fixed the fame warning. Index: basechar.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/basechar.cpp,v retrieving revision 1.127 retrieving revision 1.128 diff -C2 -d -r1.127 -r1.128 *** basechar.cpp 12 Aug 2004 18:39:56 -0000 1.127 --- basechar.cpp 12 Aug 2004 19:01:14 -0000 1.128 *************** *** 2798,2802 **** // Fame is reduced by 10% upon death ! fame_ *= 0.90; // Create the corpse --- 2798,2802 ---- // Fame is reduced by 10% upon death ! fame_ = (int)( (float)fame_ * 0.90 ); // Create the corpse |