diff --git a/aiocraft/mc/definitions.py b/aiocraft/mc/definitions.py index 20f2092..4d682c4 100644 --- a/aiocraft/mc/definitions.py +++ b/aiocraft/mc/definitions.py @@ -125,10 +125,10 @@ class Enchantment: type : EnchantmentType level : int - def __init__(self, type:EnchantmentType=None, eid:int=None, level:int=1): - if not type and not eid: + def __init__(self, type:EnchantmentType=None, id:int=None, level:int=1): + if not type and not id: raise ValueError("No enchantment type or enchantment id provided") - self.type = type or EnchantmentType(eid) + self.type = type or EnchantmentType(id) self.eid = self.type.value self.level = level