创建或者加入房间时, 传入accountid

This commit is contained in:
zhl 2021-05-07 12:08:59 +08:00
parent e54413cd48
commit c9557d6f7a

View File

@ -132,7 +132,7 @@ class PuzzleController extends BaseController {
@router('post /api/:accountid/puzzle/match') @router('post /api/:accountid/puzzle/match')
async joinMultipleGame(req, res) { async joinMultipleGame(req, res) {
const { shop, accountid, debug_begin_sec, debug_qcount } = req.params const { shop, accountid, debug_begin_sec, debug_qcount } = req.params
let data: any = { shop, maxTime: 3600 } let data: any = { shop, maxTime: 3600, accountid }
let beginSecond = (debug_begin_sec ? +debug_begin_sec : 20) let beginSecond = (debug_begin_sec ? +debug_begin_sec : 20)
beginSecond = (Math.max(2, beginSecond)) * 1000 beginSecond = (Math.max(2, beginSecond)) * 1000
/** /**