From 3280edd726a7cf7d542b9570bcb2f47ea59027d8 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Thu, 11 Jul 2024 19:34:20 +0800 Subject: [PATCH] 1 --- server/matchserver/team/team.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/matchserver/team/team.go b/server/matchserver/team/team.go index f8327346..9cf9ff13 100644 --- a/server/matchserver/team/team.go +++ b/server/matchserver/team/team.go @@ -693,6 +693,9 @@ func (this *team) EnemyTeamMustHasRealPlayer() bool { } func (this *team) NeedMatchRealPlayer() bool { + if mt.Table.Config.Get().GetMatchRealPlayer() == 0 { + return false + } return q5.ToInt32(this.getModeId()) == jccommon.MAP_MODE_BOUNTY }