From 04c62aabeab9c3abf982c5a82421fc9d10dee928 Mon Sep 17 00:00:00 2001 From: Neugeniko Date: Wed, 7 Mar 2018 15:29:31 +1100 Subject: [PATCH] Redefine scrambler operation. If we are projecting effects, modify warpScrambleStatus all the time, and turn off modules requiring 'High Speed Maneuvering' (MWDs) or "Micro Jump Drive Operation" (MJD etc) if a scrambling script is loaded. --- eos/effects/warpscrambleblockmwdwithnpceffect.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eos/effects/warpscrambleblockmwdwithnpceffect.py b/eos/effects/warpscrambleblockmwdwithnpceffect.py index d5144a4a2..f8241436d 100644 --- a/eos/effects/warpscrambleblockmwdwithnpceffect.py +++ b/eos/effects/warpscrambleblockmwdwithnpceffect.py @@ -18,3 +18,5 @@ def handler(fit, module, context): 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 + if not mod.isEmpty and mod.item.requiresSkill("Micro Jump Drive Operation") and mod.state > State.ONLINE: + mod.state = State.ONLINE