Skip to content

Commit 4421a76

Browse files
Every room shows the ten.
House pin lands the Thunder plates instead of skipping them. GOAT and 16-0 turn face-up after the tear. Series auto-spins like 82-0.
1 parent 452c025 commit 4421a76

3 files changed

Lines changed: 19 additions & 1 deletion

File tree

src/components/eighty-two.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ export function EightyTwo({ mode, challenge }: { mode: Mode; challenge?: Challen
210210
const staged = walkHouse();
211211
setOpen(staged.ten.map((p) => p.id));
212212
setPicks(staged.five.map((p) => p.id));
213-
commitWalk(staged.five, staged.walked);
214213
return;
215214
}
216215
ids.forEach((id, i) => {

src/routes/games.16-0.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,15 @@ function SixteenPage() {
145145
window.setTimeout(() => {
146146
setRipped(true);
147147
setRipping(false);
148+
pack.forEach((p, i) => {
149+
window.setTimeout(
150+
() => {
151+
setOpen((cur) => (cur.includes(p.id) ? cur : [...cur, p.id]));
152+
ripTick();
153+
},
154+
reduce ? 0 : i * 70,
155+
);
156+
});
148157
}, reduce ? 0 : 480);
149158
}
150159

@@ -243,6 +252,7 @@ function SixteenPage() {
243252

244253
{step === "spin" && (
245254
<RoomSpin
255+
auto
246256
onReady={startDraft}
247257
locked={challenge.team && challenge.era ? { team: challenge.team, era: challenge.era, luck: challenge.luck } : undefined}
248258
/>

src/routes/games.goat.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,15 @@ function GoatPage() {
9797
window.setTimeout(() => {
9898
setRipped(true);
9999
setRipping(false);
100+
pack.forEach((p, i) => {
101+
window.setTimeout(
102+
() => {
103+
setOpen((cur) => (cur.includes(p.id) ? cur : [...cur, p.id]));
104+
ripTick();
105+
},
106+
reduce ? 0 : i * 70,
107+
);
108+
});
100109
}, reduce ? 0 : 480);
101110
}
102111

0 commit comments

Comments
 (0)