We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3367b5c commit 9871c95Copy full SHA for 9871c95
2 files changed
.github/workflows/dart.yml
@@ -42,7 +42,7 @@ jobs:
42
run: ./coverage.sh
43
44
- name: Upload coverage reports to Codecov
45
- uses: codecov/codecov-action@v4
+ uses: codecov/codecov-action@v5
46
with:
47
fail_ci_if_error: true # optional (default = false)
48
token: ${{ secrets.CODECOV_TOKEN }} # required
packages/cli/lib/central_command.dart
@@ -630,7 +630,7 @@ class CentralCommand {
630
// A hack to advance the global config to the construction phase.
631
if (jumpGateComplete) {
632
return GamePhase.exploration;
633
- } else if (ships.countOfFrame(ShipFrameSymbolEnum.LIGHT_FREIGHTER) >= 10) {
+ } else if (ships.countOfFrame(ShipFrameSymbolEnum.LIGHT_FREIGHTER) >= 2) {
634
return GamePhase.construction;
635
}
636
return GamePhase.bootstrap;
0 commit comments