[wpdev-commits] xmlscripts/scripts/system skillgain.py,1.21,1.22
Brought to you by:
rip,
thiagocorrea
From: Incanus <inc...@us...> - 2004-10-20 19:44:09
|
Update of /cvsroot/wpdev/xmlscripts/scripts/system In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22231/scripts/system Modified Files: skillgain.py Log Message: Fixed gainfactor for skills always beeing 1.0 Index: skillgain.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/system/skillgain.py,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** skillgain.py 8 Oct 2004 01:35:35 -0000 1.21 --- skillgain.py 20 Oct 2004 19:43:55 -0000 1.22 *************** *** 305,309 **** elif child.name == 'defname': SKILLS[i][SKILL_DEFNAME] = child.value ! elif child.name == 'gainfactor': SKILLS[i][SKILL_GAINFACTOR] = float(child.value) elif child.name == 'strchance': --- 305,309 ---- elif child.name == 'defname': SKILLS[i][SKILL_DEFNAME] = child.value ! elif child.name == 'gainchance': SKILLS[i][SKILL_GAINFACTOR] = float(child.value) elif child.name == 'strchance': |