bug修复

This commit is contained in:
hahwu 2025-06-04 19:00:12 +08:00
parent 3ac2336e76
commit bda7e96e30

View File

@ -850,7 +850,7 @@ func (player *Player) FormatOrderReward() {
ExpCoin := (Exp - BaseMod.GetExp()) * decorateCfg.GetAreaPerPExp(DecorateMod.GetAreaId())
PExpCoin := (PExp - BaseMod.GetPExp()) * 50
OrderMod := player.PlayMod.getOrderMod()
if ExpCoin > PExpCoin {
if ExpCoin > PExpCoin || BaseMod.GetLevel() < 6 {
for k, v := range OrderMod.GetOrderList() {
if len(v.Items) != 0 {
continue