倒地后不能使用技能

This commit is contained in:
aozhiwei 2020-03-03 13:12:00 +08:00
parent 06b36b60c9
commit fb59bf9c79

View File

@ -1024,6 +1024,9 @@ void Human::DoJump()
bool Human::CanUseSkill()
{
if (downed) {
return false;
}
if (!skill_meta_) {
return false;
}