This commit is contained in:
milimoe 2025-07-01 00:20:07 +08:00
parent 5447c6fe97
commit 67af32634b
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0
2 changed files with 5 additions and 5 deletions

View File

@ -302,10 +302,10 @@ namespace Oshima.FunGame.OshimaServers.Service
public static Dictionary<ExploreResult, double> ExploreResultProbabilities { get; } = new()
{
{ ExploreResult.General, 40 },
{ ExploreResult.Nothing, 20 },
{ ExploreResult.Fight, 20 },
{ ExploreResult.Earned, 20 },
{ ExploreResult.General, 0.4 },
{ ExploreResult.Nothing, 0.2 },
{ ExploreResult.Fight, 0.2 },
{ ExploreResult.Earned, 0.2 },
{ ExploreResult.Event, 0 }
};

View File

@ -2535,7 +2535,7 @@ namespace Oshima.FunGame.WebAPI.Controllers
{
exploreTimes = FunGameConstant.MaxExploreTimes + itemCount;
}
pc.Add("exploreTimes", exploreTimes);
pc2.Add("exploreTimes", exploreTimes);
msg = $"已为 [ {user2} ] 生成 {itemCount} 个探索许可";
}
else if (itemName.Contains("魔法卡礼包"))