reduce flea offer pack chance, cuz i hate em

This commit is contained in:
CWX
2025-04-22 14:23:30 +01:00
parent 5053b8486d
commit 2b0a829515
3 changed files with 4 additions and 4 deletions
@@ -263,7 +263,7 @@
"min": 7
},
"pack": {
"chancePercent": 6,
"chancePercent": 0.5,
"itemCountMax": 17,
"itemCountMin": 4,
"itemTypeWhitelist": [
@@ -277,14 +277,14 @@ public class RagfairOfferGenerator(
/// <returns> Flea rating value </returns>
protected double? GetRating(string userId)
{
// Player offer
if (profileHelper.IsPlayer(userId))
// Player offer
{
return saveServer.GetProfile(userId).CharacterData?.PmcData?.RagfairInfo?.Rating;
}
// Trader offer
if (ragfairServerHelper.IsTrader(userId))
// Trader offer
{
return 1;
}
@@ -580,7 +580,7 @@ public class BotLootCacheService(
)
)
{
_logger.Error($"Unable to add loot cache for bot role: {botRole}");
_logger.Info($"Unable to add loot cache for bot role: {botRole} - already exists");
}
}