🐞 fix(辜月集会): 修改菜谱随机,修改游戏次数、购买次数均与菜谱无关

This commit is contained in:
zhangxk
2023-10-20 19:16:06 +08:00
parent 2bb5991770
commit 9644ea69c3
5 changed files with 131 additions and 109 deletions

View File

@@ -2392,7 +2392,7 @@ export function checkRouteParam(route: string, msg: any) {
}
case 'activity.novemberHandler.gameStart':
{
if (!checkNaturalNumbers(msg.activityId, msg.menuId)) return false;
if (!checkNaturalNumbers(msg.activityId)) return false;
break;
}
case 'activity.novemberHandler.gameEnd':
@@ -2404,12 +2404,12 @@ export function checkRouteParam(route: string, msg: any) {
}
case 'activity.novemberHandler.buyCnt':
{
if (!checkNaturalNumbers(msg.activityId, msg.count, msg.menuId)) return false;
if (!checkNaturalNumbers(msg.activityId, msg.count)) return false;
break;
}
case 'activity.novemberHandler.gameSweep':
{
if (!checkNaturalNumbers(msg.activityId, msg.count, msg.menuId)) return false;
if (!checkNaturalNumbers(msg.activityId, msg.count)) return false;
break;
}
case 'activity.activityHandler.debugActivityMemory':