(mod, distance)
| 211 | |
| 212 | |
| 213 | def getSmartbombMult(mod, distance): |
| 214 | modRange = mod.maxRange |
| 215 | if modRange is None: |
| 216 | return 0 |
| 217 | if distance is not None and distance > modRange: |
| 218 | return 0 |
| 219 | return 1 |
| 220 | |
| 221 | |
| 222 | def getDoomsdayMult(mod, tgt, distance, tgtSigRadius): |
no outgoing calls
no test coverage detected