summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Input/InputManager.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-08-26 19:03:33 +0800
committerchai <chaifix@163.com>2021-08-26 19:03:33 +0800
commit9f447daa59fe9393904206499e6872068a11e7f8 (patch)
tree4f0cc590cd3f8c41a3a63ee881eac7c5770ef149 /Assets/Scripts/Input/InputManager.cs
parentb24120efde4e3bd68892bc20233bca7a49248a2b (diff)
*misc
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());
}
}