[wpdev-commits] xmlscripts/scripts/magic spell.py,1.33,1.34
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-11-05 21:07:20
|
Update of /cvsroot/wpdev/xmlscripts/scripts/magic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32346/magic Modified Files: spell.py Log Message: Fixed a skillcheck for spells Index: spell.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/magic/spell.py,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** spell.py 26 Oct 2004 03:25:40 -0000 1.33 --- spell.py 5 Nov 2004 21:07:07 -0000 1.34 *************** *** 331,337 **** if self.skill != None: if mode == MODE_BOOK: ! circle = self.circle else: ! circle = self.circle - 2 minskill = max(0, int((1000 / 7) * circle - 200)) maxskill = min(1200, int((1000 / 7) * circle + 200)) --- 331,337 ---- if self.skill != None: if mode == MODE_BOOK: ! circle = self.circle - 1 else: ! circle = self.circle - 3 minskill = max(0, int((1000 / 7) * circle - 200)) maxskill = min(1200, int((1000 / 7) * circle + 200)) |