From fe809ed86b3e4e30fc4f358b52f316d382a45d49 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Wed, 27 Oct 2021 11:37:14 +0300 Subject: [PATCH] Always use base item attributes in mutator --- eos/saveddata/mutator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/saveddata/mutator.py b/eos/saveddata/mutator.py index a14af2d2c..30b10ca4e 100644 --- a/eos/saveddata/mutator.py +++ b/eos/saveddata/mutator.py @@ -72,7 +72,7 @@ class MutatorBase(EqBase): # dynamic attribute links to the Mutaplasmids attribute definition for this mutated definition self.dynamicAttribute = next(a for a in self.item.mutaplasmid.attributes if a.attributeID == self.attrID) # base attribute links to the base ite's attribute for this mutated definition (contains original, base value) - self.baseAttribute = self.item.item.attributes[self.dynamicAttribute.name] + self.baseAttribute = self.item.baseItem.attributes[self.dynamicAttribute.name] except (KeyboardInterrupt, SystemExit): raise except: