feat:追猎适配

This commit is contained in:
lizhuoyuan 2025-01-03 19:26:51 +08:00
parent 5b799fa9df
commit d6ecdaa646

View File

@ -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;
}