From 635e82d3d1f76b5dff2cf65df1e51ac4e8d1e10d Mon Sep 17 00:00:00 2001 From: liwei1dao Date: Mon, 28 Aug 2023 16:12:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E7=AB=9E=E6=8A=80=E5=9C=BA?= =?UTF-8?q?=E6=AE=B5=E4=BD=8D=E6=9F=A5=E6=89=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/arena/configure.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/arena/configure.go b/modules/arena/configure.go index 8e8f79905..3aede3a86 100644 --- a/modules/arena/configure.go +++ b/modules/arena/configure.go @@ -71,7 +71,7 @@ func (this *configureComp) getActiveReward(integral int32) (result *cfg.GameAren this.module.Errorln(err) } else { for _, v := range v.(*cfg.GameArenaActiveReward).GetDataMap() { - if integral >= v.ScoreLow && integral < v.ScoreUp { + if integral >= v.ScoreLow && integral <= v.ScoreUp { result = v return }