From 68e1d401642b1bd3dc505f11bced9d41b42fae34 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 18 Feb 2019 00:16:38 +0100 Subject: [PATCH] Fix cantieri navali --- utils/cast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/cast.py b/utils/cast.py index 11de8e97..38247078 100644 --- a/utils/cast.py +++ b/utils/cast.py @@ -184,6 +184,6 @@ class Spell: string += self.healing_component.stringify() if self.spell_type & SpellType.STATS: string += self.stats_component.stringify() - if self.spell_type is None: + if self.spell_type == SpellType(0): string += s(strings.SPELL.NOTHING) return string