From 60a786a6a24c0311bed2d6357d24063267d19fc0 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Sat, 10 May 2014 22:46:25 -0400 Subject: [PATCH] Fix boosting as it related to projected fits (was boosting target fit rather than current fit) --- eos/saveddata/fit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eos/saveddata/fit.py b/eos/saveddata/fit.py index 9a78c9c12..72913a096 100755 --- a/eos/saveddata/fit.py +++ b/eos/saveddata/fit.py @@ -919,13 +919,13 @@ class Fit(object): (effect.isType("active") and thing.state >= State.ACTIVE): # Run effect, and get proper bonuses applied try: - effect.handler(targetFit, thing, context) + effect.handler(self, thing, context) except: pass else: # Run effect, and get proper bonuses applied try: - effect.handler(targetFit, thing, context) + effect.handler(self, thing, context) except: pass for fit in self.projectedFits: