Skip to content

Commit dfa28c7

Browse files
committed
feat: useRate directly forR instead of max
1 parent 8152de5 commit dfa28c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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)