Fixed profile creation error due to missing default value

This commit is contained in:
Chomp
2025-04-01 11:39:05 +01:00
parent 1df7dea616
commit c1189307d7
@@ -204,7 +204,8 @@ public class ProfileHelper(
FreeRepeatableRefreshUsedCount = new Dictionary<string, int>(),
Migrations = new Dictionary<string, long>(),
CultistRewards = new Dictionary<string, AcceptedCultistReward>(),
PendingPrestige = null
PendingPrestige = null,
ExtraRepeatableQuests = new Dictionary<string, double>()
};
}