From d6ecdaa6465a62b479e4496bdfae5e36481c9f5a Mon Sep 17 00:00:00 2001 From: lizhuoyuan <2820814112@qq.com> Date: Fri, 3 Jan 2025 19:26:51 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E8=BF=BD=E7=8C=8E=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libs/maps.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/maps.js b/libs/maps.js index bb461c32..026b726f 100644 --- a/libs/maps.js +++ b/libs/maps.js @@ -881,7 +881,8 @@ maps.prototype._canMoveDirectly_checkNextPoint = function (blocksObj, x, y) { if (core.status.checkBlock.repulse[index]) return false; // 是否存在捕捉 if (core.status.checkBlock.ambush[index]) return false; - + // 是否在追猎的视野中 + if (core.status.checkBlock.chase[index]) return false; return true; }