소스 검색

修复bug

DW-PC\DW 5 년 전
부모
커밋
8bf14a7e51
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      module/game.js

+ 1 - 1
module/game.js

@@ -329,7 +329,7 @@ class Game {
              * 如果不是跳起状态,默认下坠
              *  */
             console.log("在坑里的范围内");
-            if (this.roleState !== ROLESTATE.JUMP && !this.fallingDown) {
+            if ((this.roleState !== ROLESTATE.JUMP && this.roleState !== ROLESTATE.DOWN) && !this.fallingDown) {
                 this.fallDown();
             }