This commit is contained in:
2025-10-26 15:07:13 +01:00
parent 08ff442d17
commit 58fe0fc75f

View File

@@ -2,6 +2,7 @@
```mermaid ```mermaid
graph TD graph TD
A[Start: Compare Hands] --> B{Player BUST?}; A[Start: Compare Hands] --> B{Player BUST?};
B -- Yes --> L1[Result: Player LOSES (Chips - Bet)]; B -- Yes --> L1[Result: Player LOSES (Chips - Bet)];
@@ -25,5 +26,8 @@ G1 -- No --> H1{Player Value = Dealer Value?};
H1 -- Yes --> T1; H1 -- Yes --> T1;
H1 -- No --> L1; H1 -- No --> L1;
L1 & W1 & W2 & T1 --> Z[End: Chip Balances Updated] W1 --> Z[End: Chip Balances Updated];
W2 --> Z;
L1 --> Z;
T1 --> Z;
``` ```