This commit is contained in:
hujiabin 2023-03-23 17:47:46 +08:00
parent 8cebd225ee
commit 3dc3e3775c

View File

@ -395,11 +395,11 @@ class BattleController extends BaseAuthedController {
$battleUuid = getReqVal('battle_uuid', 0);
$roomUuid = getReqVal('room_uuid', 0);
if ( !$battleUuid){
$this->_rspErr(1,'param error');
$this->_rspErr(1,'param battle_uuid error');
return;
}
if ( !$roomUuid){
$this->_rspErr(1,'param error');
$this->_rspErr(1,'param room_uuid error');
return;
}
$row = BattleSettlement::findTeam($battleUuid,$roomUuid);