Skip to content

Commit

Permalink
flimsybird: Order cones from best to worst, not the other way around
Browse files Browse the repository at this point in the history
  • Loading branch information
francorbacho committed Feb 7, 2024
1 parent 476a26d commit b421c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flimsybird/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ fn board_rec_evaluate(
MoveKind::Promote(_) => 120,
_ => 0,
};
move_is_capture_gain + movekind_gain
-move_is_capture_gain - movekind_gain
});

for movement in moves {
Expand Down

1 comment on commit b421c9f

@francorbacho
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

*moves not cones. motorsport instinct kicking in lmao

Please sign in to comment.