This commit is contained in:
aozhiwei 2021-12-03 14:26:50 +08:00
parent 070e5b6107
commit 7737f9bc5f
2 changed files with 1 additions and 9 deletions

View File

@ -11,7 +11,7 @@ class Battle(object):
{ {
'desc': '服务器战报(客户端不用处理)battleReport', 'desc': '服务器战报(客户端不用处理)battleReport',
'group': 'User', 'group': 'User',
'url': 'webapp/index.php?c=User&a=battleReport', 'url': 'webapp/index.php?c=Battle&a=battleReport',
'params': [ 'params': [
_common.ReqHead(), _common.ReqHead(),
['map_id', 0, '地图id'], ['map_id', 0, '地图id'],
@ -38,10 +38,6 @@ class Battle(object):
], ],
'response': [ 'response': [
_common.RspHead(), _common.RspHead(),
['kill_his', 0, '历史最高击杀数'],
['alive_time_his', 0, '历史最高存活时间'],
['harm_his', 0, '历史最高伤害'],
['add_HP_his', 0, '历史最高治疗'],
] ]
}, },
] ]

View File

@ -181,10 +181,6 @@ class BattleController extends BaseAuthedController {
echo json_encode(array( echo json_encode(array(
'errcode' => 0, 'errcode' => 0,
'errmsg' => '', 'errmsg' => '',
'kill_his' => $kill_his,
'alive_time_his' => $alive_time_his,
'harm_his' => $harm_his,
'add_HP_his' => $add_HP_his,
)); ));
} }