mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
fix latest crash
This commit is contained in:
parent
2522774581
commit
4502611e2a
1 changed files with 4 additions and 7 deletions
|
@ -152,15 +152,12 @@ class Spell:
|
||||||
# Spell name
|
# Spell name
|
||||||
self.name = seed
|
self.name = seed
|
||||||
# Find the spell type
|
# Find the spell type
|
||||||
self.spell_type = None
|
self.spell_type = SpellType(0)
|
||||||
if random.random() < self.damaging_spell_chance:
|
if random.random() < self.damaging_spell_chance:
|
||||||
self.spell_type = SpellType.DAMAGING
|
self.spell_type |= SpellType.DAMAGING
|
||||||
elif random.random() < self.healing_spell_chance:
|
elif random.random() < self.healing_spell_chance:
|
||||||
self.spell_type = SpellType.HEALING
|
self.spell_type |= SpellType.HEALING
|
||||||
if random.random() < self.additional_stats_chance:
|
if random.random() < self.additional_stats_chance:
|
||||||
if self.spell_type is None:
|
|
||||||
self.spell_type = SpellType.STATS
|
|
||||||
else:
|
|
||||||
self.spell_type |= SpellType.STATS
|
self.spell_type |= SpellType.STATS
|
||||||
# Damaging spells
|
# Damaging spells
|
||||||
if self.spell_type & SpellType.DAMAGING:
|
if self.spell_type & SpellType.DAMAGING:
|
||||||
|
|
Loading…
Reference in a new issue