Skip to content

Commit

Permalink
Fix #119
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzmann committed Sep 29, 2014
1 parent 98c37a2 commit c9f33f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eos/saveddata/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,9 @@ def calculateModifiedAttributes(self, fit, runTime, forceProjected = False):
if self.item:
if self.state >= State.OVERHEATED:
for effect in self.item.effects.itervalues():
if effect.runTime == runTime and effect.isType("overheat"):
if effect.runTime == runTime and \
effect.isType("overheat") and \
not forceProjected:
effect.handler(fit, self, context)

for effect in self.item.effects.itervalues():
Expand Down

0 comments on commit c9f33f2

Please sign in to comment.