From 9b5e919d8308e855359c3800419657c1c54b4500 Mon Sep 17 00:00:00 2001 From: luying Date: Mon, 27 Feb 2023 10:54:50 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(=E4=BB=BB=E5=8A=A1):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8E=86=E7=BB=83=E4=B8=AD=E5=9C=B0=E7=8E=89?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E6=97=A0=E6=B3=95=E8=BE=BE=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/services/task/taskObj.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game-server/app/services/task/taskObj.ts b/game-server/app/services/task/taskObj.ts index 7a41f6a27..815b2af11 100644 --- a/game-server/app/services/task/taskObj.ts +++ b/game-server/app/services/task/taskObj.ts @@ -1166,7 +1166,7 @@ export class CheckSingleTask { case TASK_TYPE.EQUIP_PUT_STONE_CNT: // 100. X件装备镶嵌地玉 { let { hid, newEquip } = param; - if(newEquip) break; + if(!newEquip) break; let newStoneCnt = newEquip.stones.filter(cur => cur.stone != 0).length; if(newStoneCnt <= 0) break; let records = await getRecord();