Skip to content

Commit

Permalink
Merge branch '158-server-implement-shimmy' of https://github.com/Come…
Browse files Browse the repository at this point in the history
…t-Robotics/chessBot into 158-server-implement-shimmy
  • Loading branch information
xXDMOGXx committed Nov 19, 2024
2 parents 894f005 + 96900ed commit 891678e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/debug/simulator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export function Simulator() {
className="log-list"
>
{messageLog.map(({ message, ts }) => {
return <LogEntry message={message} ts={ts} />;
return <LogEntry key={ts.getMilliseconds()} message={message} ts={ts} />;
})}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/server/api/game-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export abstract class GameManager {

public abstract handleMessage(
message: Message,
clientType: ClientType,
id: string,
): Promise<void>;
}

Expand Down

0 comments on commit 891678e

Please sign in to comment.