Added achievement images in grey and color, v1.3.0

This commit is contained in:
Nicola Sovic
2022-06-12 16:01:42 +02:00
parent 182947e84f
commit cbedc285f1
101 changed files with 3221 additions and 2 deletions

View File

@@ -69,9 +69,12 @@ namespace Assets.Scripts
bool result = false;
if (player != null)
{
if (player.getPlayerName().ToLower() == "nicola")
if (player.getPlayerName() != null)
{
result = true;
if (player.getPlayerName().ToLower() == "nicola")
{
result = true;
}
}
}
return result;