diff options
Diffstat (limited to 'Assets/Scripts/Input')
| -rw-r--r-- | Assets/Scripts/Input/InputManager.cs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Assets/Scripts/Input/InputManager.cs b/Assets/Scripts/Input/InputManager.cs index 47617c36..fadf3556 100644 --- a/Assets/Scripts/Input/InputManager.cs +++ b/Assets/Scripts/Input/InputManager.cs @@ -31,7 +31,7 @@ public class InputManager : SingletonMB<InputManager>  		UnitState.MoveParam move = new UnitState.MoveParam();
  		move.isRight = false;
  		move.key = "a";
 -		pc.unitState.ChangeState<UnitState.MoveParam>(UnitState.EUnitState.Move, move, true);
 +		pc.unitState.ChangeState(UnitState.EUnitState.Move, move);
  	}
  	public void OnTurnBack()
 | 
