mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Fix cantieri navali
This commit is contained in:
parent
4502611e2a
commit
68e1d40164
1 changed files with 1 additions and 1 deletions
|
@ -184,6 +184,6 @@ class Spell:
|
||||||
string += self.healing_component.stringify()
|
string += self.healing_component.stringify()
|
||||||
if self.spell_type & SpellType.STATS:
|
if self.spell_type & SpellType.STATS:
|
||||||
string += self.stats_component.stringify()
|
string += self.stats_component.stringify()
|
||||||
if self.spell_type is None:
|
if self.spell_type == SpellType(0):
|
||||||
string += s(strings.SPELL.NOTHING)
|
string += s(strings.SPELL.NOTHING)
|
||||||
return string
|
return string
|
||||||
|
|
Loading…
Reference in a new issue