def getCalcForDrone(id): cthc = ChanceToHitCalculator(id) cthc.setDrone(id) return Memoized(cthc.calculate)
def getChanceToHitCalculator(self, module): cthc = ChanceToHitCalculator(eve.session.shipid) cthc.setModule(module) return Memoized(cthc.calculate)