diff --git a/eos/gamedata.py b/eos/gamedata.py index 31e6f262e..76ff65a7a 100644 --- a/eos/gamedata.py +++ b/eos/gamedata.py @@ -471,12 +471,12 @@ class Item(EqBase): @property def isAbyssal(self): if Item.ABYSSAL_TYPES is None: - Item.getAbyssalYypes() + Item.getAbyssalTypes() return self.ID in Item.ABYSSAL_TYPES @classmethod - def getAbyssalYypes(cls): + def getAbyssalTypes(cls): cls.ABYSSAL_TYPES = eos.db.getAbyssalTypes() @property