This commit is contained in:
2025-09-01 22:53:57 -04:00
parent b433a26fc6
commit fd342e7d47
24 changed files with 132 additions and 332 deletions

View File

@@ -4,7 +4,7 @@ import type {
SimplePlayerView,
SimpleResult,
} from "@games/shared/games/simple";
import { me, profile } from "~/profile";
import { me } from "~/profile";
import Hand from "./Hand";
import Pile from "./Pile";
import { TableContext } from "./Table";
@@ -39,7 +39,7 @@ export default () => {
<span class="font-bold">
{view().playerTurn == me()
? "your"
: profile(view().playerTurn)()?.name + "'s"}
: table.playerNames[view().playerTurn] + "'s"}
</span>{" "}
turn
</div>