This commit is contained in:
Alexander Drozdov
2021-01-15 20:12:33 +02:00
parent 64a76f04c5
commit edb3f00e57
+11
View File
@@ -82,6 +82,17 @@ export const config = (() => {
config.widgets.find(w => w.wmType === 'price-check')!
.chaosPriceThreshold = 0.05
const mapCheck = config.widgets.find(w => w.wmType === 'map-check')!
;(mapCheck as any).selectedStats.forEach((e: any) => {
e.matcher = e.matchRef
e.matchRef = undefined
})
const imgStrip = config.widgets.find(w => w.wmType === 'image-strip')!
;(imgStrip as any).images.forEach((e: any, idx: number) => {
e.id = idx
})
config.configVersion = 4
}