From 8fd6bc10c1a7d975dcc2cf7ce459f944bd940805 Mon Sep 17 00:00:00 2001 From: gamer147 Date: Wed, 27 May 2026 10:19:57 -0400 Subject: [PATCH] chore(bootstrap): register 3 mission/achievement importers Co-Authored-By: Claude Opus 4.7 (1M context) --- SVSim.Bootstrap/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SVSim.Bootstrap/Program.cs b/SVSim.Bootstrap/Program.cs index ff22222..74fda71 100644 --- a/SVSim.Bootstrap/Program.cs +++ b/SVSim.Bootstrap/Program.cs @@ -87,6 +87,9 @@ public static class Program await new BattlePassImporter().ImportAsync(context, opts.SeedDir); await new BattlePassSeasonImporter().ImportAsync(context, opts.SeedDir); await new BattlePassRewardImporter().ImportAsync(context, opts.SeedDir); + await new MissionCatalogImporter().ImportAsync(context, opts.SeedDir); + await new AchievementCatalogImporter().ImportAsync(context, opts.SeedDir); + await new BattlePassMonthlyMissionImporter().ImportAsync(context, opts.SeedDir); await new DailyLoginBonusImporter().ImportAsync(context, opts.SeedDir); await new PreReleaseInfoImporter().ImportAsync(context, opts.SeedDir); await new CardListsImporter().ImportAsync(context, opts.SeedDir);