From 3fa8fe40e4bcb8d0d03b5da9370191e56fb301c9 Mon Sep 17 00:00:00 2001 From: Chomp Date: Mon, 6 Sep 2021 21:24:32 +0100 Subject: [PATCH] use param tags --- Generator/Helpers/Gear/GearChanceHelpers.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Generator/Helpers/Gear/GearChanceHelpers.cs b/Generator/Helpers/Gear/GearChanceHelpers.cs index deae39e..5ec0e0c 100644 --- a/Generator/Helpers/Gear/GearChanceHelpers.cs +++ b/Generator/Helpers/Gear/GearChanceHelpers.cs @@ -86,10 +86,10 @@ namespace Generator.Helpers.Gear { bot.generation = new GenerationChances( bot.inventory.items.SpecialLoot.Count, bot.inventory.items.SpecialLoot.Count, - 1, 2, - 0, 3, - GetMagazineCountByBotType(bot.botType).min, GetMagazineCountByBotType(bot.botType).max, - 0, 5); //TODO get dynamically + healingMin: 1, healingMax: 2, + looseLootMin: 0, looseLootMax: 3, + magazinesMin: GetMagazineCountByBotType(bot.botType).min, MagazineMax: GetMagazineCountByBotType(bot.botType).max, + grenandesMin: 0, grenadesMax: 5); //TODO get dynamically } public static void CalculateEquipmentChances(Bot bot, List baseBots)