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 }