fix: 识别到"地脉之花"时,终止函数的执行

This commit is contained in:
秋云
2025-05-18 11:33:28 +08:00
parent c3c80f6b1f
commit ecdbe25a26

View File

@@ -813,6 +813,7 @@ async function processLeyLineOutcrop(timeout, targetPath, retries = 0) {
try {
await pathingScript.runFile(targetPath);
await processLeyLineOutcrop(timeout, targetPath, retries + 1);
return;
} catch (error) {
throw new Error(`未识别到地脉花: ${error.message}`);
}