Game seems to work
All checks were successful
Build Mau & Deploy Mau / build (push) Successful in 1m31s
Build Mau & Deploy Mau / deploy (push) Has been skipped

This commit is contained in:
DTieman
2024-05-05 17:08:02 +02:00
parent 694bc6147a
commit 90c9b0031c
20 changed files with 213 additions and 212 deletions

View File

@@ -28,7 +28,7 @@ public class Player
return Hand.FirstOrDefault(handCard => handCard.IsSameCard(card));
}
public bool IsMe(string playerId) => Connection.Id == playerId;
public bool IsMe(Guid playerId) => Connection.Id == playerId;
public bool CanPlayCard(Card currentCard)
{