summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Input/InputManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Scripts/Input/InputManager.cs')
-rw-r--r--Assets/Scripts/Input/InputManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Assets/Scripts/Input/InputManager.cs b/Assets/Scripts/Input/InputManager.cs
index fadf3556..b5e3d8a1 100644
--- a/Assets/Scripts/Input/InputManager.cs
+++ b/Assets/Scripts/Input/InputManager.cs
@@ -46,7 +46,7 @@ public class InputManager : SingletonMB<InputManager>
public void OnAttack()
{
- pc.unitState.ChangeState(UnitState.EUnitState.Skill, new UnitState.SkillParam());
+ pc.unitState.ChangeState(UnitState.EUnitState.Attack, new UnitState.SkillParam());
}
}