|
|
@@ -39,7 +39,7 @@ public class GameInfoScript : MonoBehaviour {
|
|
|
OnlinePlayerInfoScript opi = slp.GetComponent<OnlinePlayerInfoScript>();
|
|
|
opi.GameId = gameId;
|
|
|
opi.SetPlayerName(player.Key);
|
|
|
- if (currentPlayer.Equals(player.Key) && player.Value.Equals("WAITING")) {
|
|
|
+ if (currentPlayer.Equals(player.Key, StringComparison.InvariantCultureIgnoreCase) && player.Value.Equals("WAITING")) {
|
|
|
opi.ShowDecitionButtons();
|
|
|
} else {
|
|
|
opi.SetPlayerStatus(player.Value);
|