From 6b5c1024597e6a3dab219a0f908fc4f4f17100f5 Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 1 Dec 2020 11:22:21 +0000 Subject: [PATCH] Fixed accidental deletion of code --- Assets/Scripts/monopoly/RollDice.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Assets/Scripts/monopoly/RollDice.cs b/Assets/Scripts/monopoly/RollDice.cs index 220ac92..758f567 100644 --- a/Assets/Scripts/monopoly/RollDice.cs +++ b/Assets/Scripts/monopoly/RollDice.cs @@ -47,6 +47,9 @@ public class RollDice : MonoBehaviour main.board.players[current].GetOutOfJail(dice1, dice2); return; } + } + + main.board.MovePlayer(dice1, dice2); } } \ No newline at end of file