Closed smly closed 2 years ago
Probably a typo. (# of left tiles) - 203 is always negative. The way to get the number of remaining tiles from the feature value is (feature value) - 203.
(# of left tiles) - 203
(feature value) - 203
This PR modifies to align with the following code.
https://github.com/Cryolite/kanachan/blob/c832bb025063b22f96bf6da46ca3023207fab09e/src/simulation/round_state.cpp#L353
LGTM. Thank you for the PR.
Probably a typo.
(# of left tiles) - 203
is always negative. The way to get the number of remaining tiles from the feature value is(feature value) - 203
.This PR modifies to align with the following code.
https://github.com/Cryolite/kanachan/blob/c832bb025063b22f96bf6da46ca3023207fab09e/src/simulation/round_state.cpp#L353