Compare commits
No commits in common. "71b6dee8acc6ea984ba4d29ea471383b86985f2d" and "87dfbaf5d1222a406402d660e42b1a0b9a51d8b2" have entirely different histories.
71b6dee8ac
...
87dfbaf5d1
@ -264,7 +264,7 @@ public class GameplayManager : MonoBehaviour, IBase, IBootLoader, IDataLoader
|
||||
// SetCanRollDiceForUser(!isBotTurn); // TODO :: Need to change
|
||||
if (isBotTurn)
|
||||
{
|
||||
currentPlayerTurnTimer?.KillTimer();
|
||||
currentPlayerTurnTimer.KillTimer();
|
||||
uIManager.UpdatePlayerTurnText(currentPlayerTypeTurn);
|
||||
return;
|
||||
}
|
||||
@ -302,12 +302,11 @@ public class GameplayManager : MonoBehaviour, IBase, IBootLoader, IDataLoader
|
||||
|
||||
private void ResetCurrentPlayerTurnTimer()
|
||||
{
|
||||
currentPlayerTurnTimer?.KillTimer();
|
||||
currentPlayerTurnTimer.KillTimer();
|
||||
}
|
||||
|
||||
public void InitCurrentGamePlayerInfo()
|
||||
{
|
||||
currentPlayerTurnIndex = 0;
|
||||
UpdateCurrentPlayerTurn(allPlayerTypes[currentPlayerTurnIndex]);
|
||||
SetCanRollDiceForUser(IsUsersTurn());
|
||||
UpdateDiceView();
|
||||
|
||||
@ -56,7 +56,6 @@ public class PlayerBaseHandler : MonoBehaviour
|
||||
|
||||
public void ShowSelectedPlayerBase(PlayerType playerType, bool state)
|
||||
{
|
||||
if (playerBasesDict.ContainsKey(playerType))
|
||||
playerBasesDict[playerType].ShowPlayerBaseEffect(state);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user