Skip to content

Commit 0650954

Browse files
committed
disable cache to build
1 parent 6d7dd51 commit 0650954

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/api/src/commands/OnScoreboardCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class OnScoreboardCommand extends Command<CountryRoom, {}> {
3434
)
3535
this.room.dispatcher.dispatch(new OnPrepareRoundCommand())
3636
},
37-
this.state.room === 'speedrun' ? 4000 : 8000
37+
this.state.room === 'speedrun' ? 4000 : 12000
3838
)
3939
}
4040
}

packages/web/components/game/GameMap.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export default class GameMap extends Vue {
172172
173173
const midLat = (lat1 + lat2) / 2;
174174
const midLng = (lng1 + lng2) / 2;
175-
175+
return coords;
176176
return [midLng, midLat];
177177
}
178178

0 commit comments

Comments
 (0)