Fix part 1 of bug 2369423 ("occidental mages weapons bugs"). Part 1 is weapon speed going the wrong way.

git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@11337 282e977c-c81d-0410-88c4-b93c2d0d6712
master
anmaster 2009-02-04 17:08:57 +00:00
parent b4042eae5e
commit 6571131b4c
1 changed files with 2 additions and 2 deletions

View File

@ -18,9 +18,9 @@ elif (r <= 0.02):
me.Weight = me.Archetype.Clone.Weight
me.LastSP = me.Archetype.Clone.LastSP
elif (r <= 0.03):
if me.LastSP == me.Archetype.Clone.LastSP:
if me.LastSP == me.Archetype.Clone.LastSP and me.LastSP != 0:
ac.Write("Your weapon suddenly seems easier to handle!")
me.LastSP = me.Archetype.Clone.LastSP + 1
me.LastSP = me.Archetype.Clone.LastSP - 1
me.Dam = me.Archetype.Clone.Dam
me.Weight = me.Archetype.Clone.Weight
elif (r <= 0.04):