Skip to content

Commit

Permalink
Fix DT2 cl (#6083)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit authored Oct 8, 2024
1 parent a1d83b8 commit dfe7b91
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lib/data/Collections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { divinationEnergies, portents } from '../bso/divination';
import type { ClueTier } from '../clues/clueTiers';
import { ClueTiers } from '../clues/clueTiers';
import type { CollectionLogType } from '../collectionLogTask';
import { PHOSANI_NIGHTMARE_ID, ZALCANO_ID } from '../constants';
import { OSB_VIRTUS_IDS, PHOSANI_NIGHTMARE_ID, ZALCANO_ID } from '../constants';
import { discontinuedDyes, dyedItems } from '../dyedItems';
import { growablePetsCL } from '../growablePets';
import { implingsCL } from '../implings';
Expand Down Expand Up @@ -371,7 +371,7 @@ export const allCollectionLogs: ICollection = {
Default: [Monsters.DukeSucellus.name, Monsters.AwakenedDukeSucellus.name],
Awakened: Monsters.AwakenedDukeSucellus.name
},
allItems: Monsters.DukeSucellus.allItems,
allItems: Monsters.DukeSucellus.allItems.filter(item => !OSB_VIRTUS_IDS.includes(item)),
items: dukeSucellusCL,
fmtProg: ({ stats }) => [
`${stats.kcBank[Monsters.DukeSucellus.id] ?? 0} KC`,
Expand All @@ -384,7 +384,7 @@ export const allCollectionLogs: ICollection = {
Default: [Monsters.TheLeviathan.name, Monsters.AwakenedTheLeviathan.name],
Awakened: Monsters.AwakenedTheLeviathan.name
},
allItems: Monsters.TheLeviathan.allItems,
allItems: Monsters.TheLeviathan.allItems.filter(item => !OSB_VIRTUS_IDS.includes(item)),
items: theLeviathanCL,
fmtProg: ({ stats }) => [
`${stats.kcBank[Monsters.TheLeviathan.id] ?? 0} KC`,
Expand All @@ -397,7 +397,7 @@ export const allCollectionLogs: ICollection = {
Default: [Monsters.Vardorvis.name, Monsters.AwakenedVardorvis.name],
Awakened: Monsters.AwakenedVardorvis.name
},
allItems: Monsters.Vardorvis.allItems,
allItems: Monsters.Vardorvis.allItems.filter(item => !OSB_VIRTUS_IDS.includes(item)),
items: vardorvisCL,
fmtProg: ({ stats }) => [
`${stats.kcBank[Monsters.Vardorvis.id] ?? 0} KC`,
Expand All @@ -416,7 +416,7 @@ export const allCollectionLogs: ICollection = {
Default: [Monsters.TheWhisperer.name, Monsters.AwakenedTheWhisperer.name],
Awakened: Monsters.AwakenedTheWhisperer.name
},
allItems: Monsters.TheWhisperer.allItems,
allItems: Monsters.TheWhisperer.allItems.filter(item => !OSB_VIRTUS_IDS.includes(item)),
items: theWhispererCL,
fmtProg: ({ stats }) => [
`${stats.kcBank[Monsters.TheWhisperer.id] ?? 0} KC`,
Expand Down Expand Up @@ -1537,7 +1537,7 @@ export const allCollectionLogs: ICollection = {
...Monsters.TheWhisperer.allItems,
...Monsters.Vardorvis.allItems,
...Monsters.DukeSucellus.allItems
],
].filter(item => !OSB_VIRTUS_IDS.includes(item)),
items: [...theLeviathanCL, ...theWhispererCL, ...vardorvisCL, ...dukeSucellusCL]
},
Creatables: {
Expand Down

0 comments on commit dfe7b91

Please sign in to comment.