We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b87090 commit c3b3f0aCopy full SHA for c3b3f0a
1 file changed
lib/saveHandlers/civ6SaveHandler.ts
@@ -120,8 +120,8 @@ export class Civ6SaveHandler implements SaveHandler {
120
121
if (this.wrapper.parsed.MOD_BLOCK_1) {
122
for (const mod of this.wrapper.parsed.MOD_BLOCK_1.data) {
123
- if (CIV6_DLCS.some(x => x.id === mod.MOD_ID.data)) {
124
- result.push(mod.MOD_ID.data);
+ if (CIV6_DLCS.some(x => x.id === mod.MOD_ID.data?.toUpperCase())) {
+ result.push(mod.MOD_ID.data?.toUpperCase());
125
}
126
127
0 commit comments