mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-22 04:05:42 +00:00
Change some default player props
Fix pre-cosmetic dev migration bug
This commit is contained in:
parent
8398c0585b
commit
aef9a88b31
@ -524,7 +524,7 @@ window.player = {
|
||||
},
|
||||
constants: {},
|
||||
execTimer: 0,
|
||||
type: AUTOMATOR_TYPE.BLOCK,
|
||||
type: AUTOMATOR_TYPE.TEXT,
|
||||
forceUnlock: false,
|
||||
currentInfoPane: AutomatorPanels.INTRO_PAGE,
|
||||
},
|
||||
@ -794,7 +794,7 @@ window.player = {
|
||||
offlineProgress: true,
|
||||
automaticTabSwitching: true,
|
||||
respecIntoProtected: false,
|
||||
offlineTicks: 1000,
|
||||
offlineTicks: 1e5,
|
||||
showRecentRate: true,
|
||||
autosaveInterval: 30000,
|
||||
showTimeSinceSave: true,
|
||||
|
@ -89,7 +89,7 @@ export default {
|
||||
},
|
||||
willLoseCosmetics() {
|
||||
const currSets = player.reality.glyphs.cosmetics.unlockedFromNG;
|
||||
const importedSets = this.player.reality?.glyphs.cosmetics.unlockedFromNG ?? [];
|
||||
const importedSets = this.player.reality?.glyphs.cosmetics?.unlockedFromNG ?? [];
|
||||
return currSets.filter(set => !importedSets.includes(set)).length > 0;
|
||||
},
|
||||
willLoseSpeedrun() {
|
||||
|
Loading…
Reference in New Issue
Block a user