Sync finished

Lets try
This commit is contained in:
AliIbnAbiTalib
2023-04-11 15:02:09 +02:00
parent b46b3aebe3
commit 7c4d57b2c0
4 changed files with 16 additions and 0 deletions
@@ -280,4 +280,9 @@ public class NoPlayablePlayer : Player
transform.position + Vector3.up * 3, ref useLess, 0.2f);
diceScript.StartRandom();
}
public void pinkFieldLostItem(int index)
{
itemInfoImages[index].color = new Color(0, 0, 0, 0);
}
}
@@ -244,6 +244,7 @@ public class PlayablePlayer : Player
int pickRandomItem = Random.Range(0, tempCurrentItems);
client.items[pickRandomItem] = null;
itemInfoImages[pickRandomItem].color = new Color(0, 0, 0, 0);
client.SendLostItem((byte)pickRandomItem);
}
break;
}