diff --git a/Qwirkle/QwirkleViews/Pages/GameBoard.xaml.cs b/Qwirkle/QwirkleViews/Pages/GameBoard.xaml.cs index 85ad7ad..8ef0e46 100644 --- a/Qwirkle/QwirkleViews/Pages/GameBoard.xaml.cs +++ b/Qwirkle/QwirkleViews/Pages/GameBoard.xaml.cs @@ -106,7 +106,10 @@ public partial class Gameboard : ContentPage } else { - game.GetPlayerScore(game.GetPlayingPlayer(), game.CellsUsed, game.GetBoard()!); + var x = game.GetPlayerScore(game.GetPlayingPlayer(), game.CellsUsed, game.GetBoard()!); + + DisplayAlert("TEMP ALERT FOR DEBUG", game.GetPlayingPlayer().ToString() + " win : " + x, "Copy !"); + game.EmptyCellUsed(); game.DrawTiles(game.GetPlayingPlayer()); }