🐞 fix(辜月集会): 修改菜谱随机,修改游戏次数、购买次数均与菜谱无关
This commit is contained in:
@@ -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':
|
||||
|
||||
Reference in New Issue
Block a user