From fb59bf9c79d674007b55324b28403459829a1375 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 3 Mar 2020 13:12:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=80=92=E5=9C=B0=E5=90=8E=E4=B8=8D=E8=83=BD?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E6=8A=80=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/gameserver/human.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/gameserver/human.cc b/server/gameserver/human.cc index dd2ea93..a1246f1 100644 --- a/server/gameserver/human.cc +++ b/server/gameserver/human.cc @@ -1024,6 +1024,9 @@ void Human::DoJump() bool Human::CanUseSkill() { + if (downed) { + return false; + } if (!skill_meta_) { return false; }