This commit is contained in:
aozhiwei 2024-08-22 09:51:57 +08:00
parent 17553e8e6c
commit 0bd9b9982b

View File

@ -678,11 +678,11 @@ class BattleController extends BaseAuthedController {
$sign = ''; $sign = '';
$zoneId = 1; $zoneId = 1;
$nodeId = 1; $nodeId = 1;
$modeId = 1; $modeId = 5;
$mapId = 1; $mapId = 2008;
$roomUuid = ''; $roomUuid = $customData['room_uuid'];
$startTime = myself()->_getNowTime(); $startTime = $customData['start_time'];
$currSession = null; $currSeason = null;
$data = array( $data = array(
'sign' => $sign, 'sign' => $sign,
'zone_id' => $zoneId, 'zone_id' => $zoneId,
@ -758,6 +758,7 @@ class BattleController extends BaseAuthedController {
} }
array_push($data['team_list'], $teamInfo); array_push($data['team_list'], $teamInfo);
} }
error_log(json_encode($data));
myself()->_rspData($data); myself()->_rspData($data);
} }