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 }