dice and source bugfix

This commit is contained in:
2022-12-14 10:32:38 +01:00
parent 7353d4ebbf
commit c46635f4e0
5 changed files with 128 additions and 128 deletions

View File

@@ -66,7 +66,7 @@ public class Dice : MonoBehaviour {
}
public int RollDice() {
int randomDiceSide = Random.Range(0, 5);
int randomDiceSide = Random.Range(0, 6);
int finalSide = randomDiceSide + 1;
Debug.Log(finalSide);