This commit is contained in:
blitzmann
2014-09-29 16:20:59 -04:00
parent 98c37a253f
commit c9f33f200d

View File

@@ -603,7 +603,9 @@ class Module(HandledItem, HandledCharge, ItemAttrShortcut, ChargeAttrShortcut):
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():