Skip to content

Commit d68d15d

Browse files
authored
Merge pull request #2308 from mkmccarty/mm-branch-1
feat: useRate directly forR instead of max
2 parents 8152de5 + dfa28c7 commit d68d15d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/boost/boost.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1760,7 +1760,8 @@ func reorderBoosters(contract *Contract) {
17601760
for _, el := range contract.Order {
17611761
elrPairs = append(elrPairs, ELRPair{
17621762
Name: el,
1763-
ELR: max(contract.Boosters[el].ArtifactSet.LayRate, contract.Boosters[el].ArtifactSet.ShipRate),
1763+
ELR: contract.Boosters[el].ArtifactSet.LayRate,
1764+
//ELR: max(contract.Boosters[el].ArtifactSet.LayRate, contract.Boosters[el].ArtifactSet.ShipRate),
17641765
})
17651766
}
17661767

0 commit comments

Comments
 (0)