remove unused method

add TODO
This commit is contained in:
Chomp 2021-08-17 17:33:09 +01:00
parent 9d53d15302
commit e777914d0b

View File

@ -90,11 +90,6 @@ namespace Generator.Helpers.Gear
GetPercent(totalBotsCount, bipodCount));
}
private static Mods CalculateModChances(List<Datum> 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;
}
}