Release v0.1.19 2026-07-19
This commit is contained in:
@@ -51,6 +51,7 @@ import { DualDisplayFrame } from "./DualDisplayFrame";
|
||||
import { DEFAULT_CONTROLLER_GLYPHS } from "../input/controllerGlyphs";
|
||||
import {
|
||||
HOCKEY_PVP_GOAL_DAMAGE,
|
||||
HOCKEY_PVP_COUNTDOWN_MS,
|
||||
HOCKEY_PVP_QUEUE_TIMEOUT_MS,
|
||||
hockeyPvpBossAt,
|
||||
randomHockeyPvpCpuName,
|
||||
@@ -1593,6 +1594,7 @@ function ModeScreen({ onLaunch }: { onLaunch: (bossIds: readonly BossId[], diffi
|
||||
seed: Math.max(1, Math.floor(Math.random() * 0xffffffff)),
|
||||
opponentName: randomHockeyPvpCpuName(),
|
||||
role: "cpu",
|
||||
countdownEndsAtMs: Date.now() + HOCKEY_PVP_COUNTDOWN_MS,
|
||||
});
|
||||
};
|
||||
const cancelPvpQueue = () => {
|
||||
@@ -1624,6 +1626,7 @@ function ModeScreen({ onLaunch }: { onLaunch: (bossIds: readonly BossId[], diffi
|
||||
completePvpQueue({
|
||||
matchId: joined.match.id,
|
||||
seed: joined.match.seed,
|
||||
countdownEndsAtMs: joined.match.countdownEndsAtMs,
|
||||
opponentName: joined.match.opponentName,
|
||||
role: joined.match.role,
|
||||
});
|
||||
@@ -1638,6 +1641,7 @@ function ModeScreen({ onLaunch }: { onLaunch: (bossIds: readonly BossId[], diffi
|
||||
completePvpQueue({
|
||||
matchId: result.match.id,
|
||||
seed: result.match.seed,
|
||||
countdownEndsAtMs: result.match.countdownEndsAtMs,
|
||||
opponentName: result.match.opponentName,
|
||||
role: result.match.role,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user