Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8321
Modified Files:
COPYRIGHT basechar.cpp
Log Message:
Typo on the copyright name
Hopefully Fixed http://zs.drw.ru/m/bug_view_page.php?bug_id=0000220
Index: COPYRIGHT
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/COPYRIGHT,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** COPYRIGHT 5 Aug 2004 20:26:28 -0000 1.2
--- COPYRIGHT 12 Aug 2004 18:39:56 -0000 1.3
***************
*** 36,38 ****
Unknown (Kid_Sk8)
! Unknown (Incarnus)
--- 36,38 ----
Unknown (Kid_Sk8)
! Unknown (Incanus)
Index: basechar.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/basechar.cpp,v
retrieving revision 1.126
retrieving revision 1.127
diff -C2 -d -r1.126 -r1.127
*** basechar.cpp 12 Aug 2004 03:02:50 -0000 1.126
--- basechar.cpp 12 Aug 2004 18:39:56 -0000 1.127
***************
*** 1110,1117 ****
bool success = false;
! // Maximum Value of 120 for checks
! // I disabled this so you can make skillchecks for grandmasters that are still tough
! //if( max > 1200 )
! // max = 1200;
// How far is the players skill above the required minimum.
--- 1110,1116 ----
bool success = false;
! /* Returns false if you don't have the skill required. */
! if ( skillValue( skill ) < min )
! return false;
// How far is the players skill above the required minimum.
|