mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 12:37:16 +02:00
Fixed a lingering error from turning off "quick assignment" that caused issues in TutorialWorld.
This commit is contained in:
parent
a1dc7451ef
commit
47356ca632
2 changed files with 10 additions and 4 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue