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-b93c2d0d6712master
parent
b4042eae5e
commit
6571131b4c
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue