From e777914d0b04ee4f89876bf94a2a1f66ca37d1ae Mon Sep 17 00:00:00 2001 From: Chomp Date: Tue, 17 Aug 2021 17:33:09 +0100 Subject: [PATCH] remove unused method add TODO --- Generator/Helpers/Gear/GearChanceHelpers.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Generator/Helpers/Gear/GearChanceHelpers.cs b/Generator/Helpers/Gear/GearChanceHelpers.cs index 79acf00..70326db 100644 --- a/Generator/Helpers/Gear/GearChanceHelpers.cs +++ b/Generator/Helpers/Gear/GearChanceHelpers.cs @@ -90,11 +90,6 @@ namespace Generator.Helpers.Gear GetPercent(totalBotsCount, bipodCount)); } - private static Mods CalculateModChances(List baseBots) - { - throw new System.NotImplementedException(); - } - public static void AddGenerationChances(Bot bot) { switch (bot.botType) @@ -102,7 +97,7 @@ namespace Generator.Helpers.Gear case BotType.assault: case BotType.pmcBot: case BotType.marksman: - bot.generation = new GenerationChances(0, 1, 1, 2, 0, 3, 2, 4, 0, 5); + bot.generation = new GenerationChances(0, 1, 1, 2, 0, 3, 2, 4, 0, 5); //TODO get dynamically break; } }