✨ feat(将魂出售): 修复将魂回收的问题

4cfbce94e - 2fa8c7a91 by zhangxk
This commit is contained in:
luying
2023-07-19 15:51:04 +08:00
parent 523eaad05e
commit f09ebd56b1
5 changed files with 79 additions and 59 deletions
+2 -2
View File
@@ -1983,8 +1983,8 @@ export function checkRouteParam(route: string, msg: any) {
case "role.shopHandler.recycleSoulFast":
{
if (!checkNaturalArray(msg.recycleSoulFastPara)) return false;
for (let { hid, goodsId, count } of msg.recycleSoulFastPara) {
if (!checkNaturalNumbers(hid, goodsId, count)) return false;
for (let { hid, count } of msg.recycleSoulFastPara) {
if (!checkNaturalNumbers(hid, count)) return false;
}
break;
}