update for 3.3.1

This commit is contained in:
2025-05-24 15:55:48 +07:00
parent 7782691604
commit dafd0af23d
28 changed files with 513 additions and 161 deletions

View File

@@ -14,7 +14,10 @@ export const exportBattleData = (
waveIndex,
dataAvatar,
maxWave,
maxCycle
maxCycle,
version,
avatarDetail,
enemyDetail
} = useBattleDataStore.getState();
const data: BattleDataStateJson = {
@@ -28,7 +31,10 @@ export const exportBattleData = (
cycleIndex,
waveIndex,
maxWave,
maxCycle
maxCycle,
version,
avatarDetail,
enemyDetail
}
const dataStr = JSON.stringify(data, null, 2);