Implemented getAllBotDifficulties

This commit is contained in:
Chomp
2025-01-18 13:09:28 +00:00
parent 2c1e974c89
commit abb9e02869
7 changed files with 173 additions and 20 deletions
+4 -4
View File
@@ -750,10 +750,10 @@ public class SeasonalEventService
{
var gifterBot = _databaseService.GetBots().Types["gifter"];
var items = gifterBot.BotInventory.Items.Backpack.Keys.ToList();
gifterBot.BotDifficulty.Easy.Patrol["ITEMS_TO_DROP"] = items;
gifterBot.BotDifficulty.Normal.Patrol["ITEMS_TO_DROP"] = items;
gifterBot.BotDifficulty.Hard.Patrol["ITEMS_TO_DROP"] = items;
gifterBot.BotDifficulty.Impossible.Patrol["ITEMS_TO_DROP"] = items;
gifterBot.BotDifficulty["Easy"].Patrol["ITEMS_TO_DROP"] = items;
gifterBot.BotDifficulty["Normal"].Patrol["ITEMS_TO_DROP"] = items;
gifterBot.BotDifficulty["Hard"].Patrol["ITEMS_TO_DROP"] = items;
gifterBot.BotDifficulty["Impossible"].Patrol["ITEMS_TO_DROP"] = items;
}
/// <summary>