From 192d6f4605c276784ce66d919e30ff11b554452d Mon Sep 17 00:00:00 2001 From: blitzmann Date: Mon, 5 Jan 2015 22:50:33 -0500 Subject: [PATCH] Fix #156 --- eos/saveddata/fit.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eos/saveddata/fit.py b/eos/saveddata/fit.py index 484e314fe..a382ae01d 100644 --- a/eos/saveddata/fit.py +++ b/eos/saveddata/fit.py @@ -406,12 +406,14 @@ class Fit(object): (effect.isType("active") and thing.state >= State.ACTIVE): # Run effect, and get proper bonuses applied try: + self.register(thing) effect.handler(self, thing, context) except: pass else: # Run effect, and get proper bonuses applied try: + self.register(thing) effect.handler(self, thing, context) except: pass