Files
pyfa/eos/effects/structurewarpscrambleblockmwdwithnpceffect.py
blitzman 7fbd89392a Revert "Remove effect files that are not used by any item"
This reverts commit b29fa2467a.

(cherry picked from commit 4a95156)
2016-12-14 12:14:39 -08:00

16 lines
416 B
Python

# Not used by any item
from eos.types import State
# Not used by any item
runTime = "early"
type = "projected", "active"
def handler(fit, module, context):
if "projected" not in context:
return
# this is such a dirty hack
for mod in fit.modules:
if not mod.isEmpty and mod.item.requiresSkill("High Speed Maneuvering") and mod.state > State.ONLINE:
mod.state = State.ONLINE