Skip to content
Merged

Deploy #1754

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,6 @@ await db.StringIncrementAsync(string.Format(RedisKeys.CharacterJobCounter, _quer
await JobRepository.AddJobAsync(JobPriority.Low, JobType.CharacterMythicKeystoneProfileSeason, data[0], apiSeason.ToString());
}

// HACK for RaiderIO + Remix: Legion
if (apiSeasons.Contains(15))
{
apiSeasons.Insert(0, 1001);
}
await JobRepository.AddJobAsync(JobPriority.Low, JobType.CharacterRaiderIo, data[0], JsonSerializer.Serialize(apiSeasons));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public class ApiCharacterRaiderIoSeason
{ "season-tww-1", 13 },
{ "season-tww-2", 14 },
{ "season-tww-3", 15 },
{ "season-tww-3-legion-remix", 1001 },
{ "season-mn-1", 17 },
};

Expand Down
6 changes: 3 additions & 3 deletions apps/frontend/data/tasks/11-midnight/prey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const midPrey: Task = {
questCount: 2,
questReset: DbResetType.Weekly,
questIds: [93169, 93857],
couldGetFunc: () => renownFunc(1),
// couldGetFunc: () => renownFunc(1),
canGetFunc: (char) =>
userState.quests.anyCharacterHasById.has(HARD_UNLOCK) ? '' : Strings.doUnlockQuests,
},
Expand All @@ -72,7 +72,7 @@ export const midPrey: Task = {
questCount: 2,
questReset: DbResetType.Weekly,
questIds: [93170, 93861],
couldGetFunc: () => renownFunc(4),
// couldGetFunc: () => renownFunc(4),
canGetFunc: (char) =>
userState.quests.anyCharacterHasById.has(NIGHTMARE_UNLOCK)
? ''
Expand All @@ -85,7 +85,7 @@ export const midPrey: Task = {
minimumLevel: 90,
questReset: DbResetType.Weekly,
questIds: [94446],
couldGetFunc: () => renownFunc(4),
// couldGetFunc: () => renownFunc(4),
canGetFunc: (char) =>
userState.quests.anyCharacterHasById.has(NIGHTMARE_UNLOCK)
? ''
Expand Down
Loading