From 0603e0c89d474811b0a5fd8d27c32977416e947d Mon Sep 17 00:00:00 2001 From: MaruMaruOO <37426450+MaruMaruOO@users.noreply.github.com> Date: Fri, 6 Jul 2018 23:41:34 -0400 Subject: [PATCH] Fixes the Helios's drone damage bonus. The required skill should be Light Drone Operation as light drones don't require Drone Avionics. This causes the damage bonus to apply correctly. Giving a max skill Hobgoblin II 29.7dps rather than 19.8dps. --- eos/effects/shipdronescoutthermaldamagegf2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/effects/shipdronescoutthermaldamagegf2.py b/eos/effects/shipdronescoutthermaldamagegf2.py index afe18cb9d..54f7716e0 100644 --- a/eos/effects/shipdronescoutthermaldamagegf2.py +++ b/eos/effects/shipdronescoutthermaldamagegf2.py @@ -6,5 +6,5 @@ type = "passive" def handler(fit, ship, context): - fit.drones.filteredItemBoost(lambda mod: mod.item.requiresSkill("Drone Avionics"), + fit.drones.filteredItemBoost(lambda mod: mod.item.requiresSkill("Light Drone Operation"), "thermalDamage", ship.getModifiedItemAttr("shipBonusGF2"), skill="Gallente Frigate")