This commit is contained in:
aozhiwei 2024-11-11 11:55:02 +08:00
parent 04f2916b68
commit 6ddbfb87fc

View File

@ -2,6 +2,7 @@ package mt
import ( import (
"f5" "f5"
"math/rand"
"main/mtb" "main/mtb"
) )
@ -17,5 +18,5 @@ func (this *Reward) RandScore() int32 {
if this.GetReward1() <0 { if this.GetReward1() <0 {
} }
return 0 return int32(rand.Intn(10))
} }