diff --git a/doc/Battle.py b/doc/Battle.py index ae31d726..fc9f000c 100644 --- a/doc/Battle.py +++ b/doc/Battle.py @@ -33,6 +33,8 @@ class Battle(object): ['room_uuid', 0, '房间唯一id'], ['room_mode', 0, '房间模式 0:吃鸡模式 1:匹配赛模式'], ['hero_id', 0, '英雄id'], + ['hero_uniid', 0, '英雄uniid'], + ['hero_quality', 0, '英雄quality'], ['map_name', '', '地图名'], ['team_mode', 0, '队伍模式 0:单人 1:组队'], ['game_time', 0, '游戏时间'], diff --git a/webapp/controller/BattleController.class.php b/webapp/controller/BattleController.class.php index f2235ede..0c0ad17a 100644 --- a/webapp/controller/BattleController.class.php +++ b/webapp/controller/BattleController.class.php @@ -35,4 +35,9 @@ class BattleController extends BaseAuthedController { $this->_rspOk(); } + public function getBattleData() + { + error_log('getBattleData'); + } + }