소스 검색

Fix a missing migration

This was breaking old saves
master
Fen Dweller 3 년 전
부모
커밋
6493d58a8d
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +7
    -1
      macrovision.js

+ 7
- 1
macrovision.js 파일 보기

@@ -6248,12 +6248,18 @@ const migrationDefs = [
data.entities.forEach((entity) => {
entity.flipped = false;
});
}
},
/*
Migration: 5 -> 6

Entities can now have custom attributes
*/

(data) => {
data.entities.forEach((entity) => {
entity.views = {};
});
}
];

function migrateScene(data) {


불러오는 중...
취소
저장