Renamed attribute

This commit is contained in:
blitzmann
2018-03-20 22:49:40 -04:00
parent 1513b07071
commit ee00914a2b
3 changed files with 4 additions and 4 deletions

View File

@@ -9,4 +9,4 @@ type = "passive"
def handler(fit, ship, context):
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"),
"explosionDelay", ship.getModifiedItemAttr("shipBonusPirateFaction2"))
"explosionDelay", ship.getModifiedItemAttr("shipBonusRole8"))

View File

@@ -7,6 +7,6 @@ type = "passive"
def handler(fit, ship, context):
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Remote Armor Repair Systems"),
"maxRange", ship.getModifiedItemAttr("shipBonusPirateFaction2"))
"maxRange", ship.getModifiedItemAttr("shipBonusRole8"))
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Remote Armor Repair Systems"),
"falloffEffectiveness", ship.getModifiedItemAttr("shipBonusPirateFaction2"))
"falloffEffectiveness", ship.getModifiedItemAttr("shipBonusRole8"))

View File

@@ -10,4 +10,4 @@ type = "passive"
def handler(fit, container, context):
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Astrometrics"),
"baseSensorStrength", container.getModifiedItemAttr("shipBonusPirateFaction2"))
"baseSensorStrength", container.getModifiedItemAttr("shipBonusRole8"))