From 5dae9b1edd4c243354f0ec7b546fc14631ba06d5 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 2 Jan 2024 15:21:37 +0800 Subject: [PATCH] 1 --- webapp/controller/MatchController.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webapp/controller/MatchController.class.php b/webapp/controller/MatchController.class.php index a7e84991..a449b075 100644 --- a/webapp/controller/MatchController.class.php +++ b/webapp/controller/MatchController.class.php @@ -145,7 +145,8 @@ class MatchController extends BaseAuthedController { foreach ($currMatchDb as $key => $val) { $tmpTeamDb = $this->readTeamDb($r, $key); if ($tmpTeamDb['zid'] != $teamDb['zid'] || - $tmpTeamDb['node_id'] != $teamDb['node_id']) { + $tmpTeamDb['node_id'] != $teamDb['node_id'] || + $tmpTeamDb['map_id'] != $teamDb['map_id']) { continue; } if (!empty($tmpTeamDb) && $this->_getNowTime() - $val['match_time'] > 120) {