Fixed a lingering error from turning off "quick assignment" that caused issues in TutorialWorld.

This commit is contained in:
Griatch 2013-02-18 20:08:05 +01:00
parent a1dc7451ef
commit 47356ca632
2 changed files with 10 additions and 4 deletions

View file

@ -773,8 +773,8 @@ class Weapon(TutorialObject):
super(Weapon, self).at_object_creation()
self.db.hit = 0.4 # hit chance
self.db.parry = 0.8 # parry chance
self.damage = 8.0
self.magic = False
self.db.damage = 8.0
self.db.magic = False
self.cmdset.add_default(CmdSetWeapon, permanent=True)
def reset(self):