From 968672da06146ed9957630eec905c4ba95a98136 Mon Sep 17 00:00:00 2001 From: hypercross Date: Tue, 2 Jun 2026 18:08:01 +0800 Subject: [PATCH] fix(blackjack): update payout function signature --- examples/blackjack/components.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/blackjack/components.ts b/examples/blackjack/components.ts index 720c446..50a9352 100644 --- a/examples/blackjack/components.ts +++ b/examples/blackjack/components.ts @@ -166,7 +166,7 @@ export function createCardHelpers(world: World) { message: "Both have Blackjack — Push! Press N for new round.", }); } else { - const winnings = payout(0, "blackjack", bet.amount); + const winnings = payout("blackjack", bet.amount); score.chips += bet.amount + winnings; score.wins++; world.setSingleton(GamePhase, {