Skip to content

Commit 202e040

Browse files
committed
🛠️ Fix broken 1.21.2 data pack export.
1 parent aed8d06 commit 202e040

File tree

3 files changed

+6
-214
lines changed

3 files changed

+6
-214
lines changed

src/systems/resourcepackCompiler/1.21.1.ts renamed to src/systems/resourcepackCompiler/1.20.4.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { MAX_PROGRESS, PROGRESS, PROGRESS_DESCRIPTION } from '../../interface/exportProgressDialog'
1+
import { MAX_PROGRESS, PROGRESS, PROGRESS_DESCRIPTION } from '../../interface/dialog/exportProgress'
22
import { isResourcePackPath, toSafeFuntionName } from '../../util/minecraftUtil'
33
import { TRANSPARENT_TEXTURE } from '../../variants'
44
import { IntentionalExportError } from '../exporter'

src/systems/resourcepackCompiler/1.21.2.ts

Lines changed: 0 additions & 207 deletions
This file was deleted.
Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
import _1_20_5 from './1.21.1'
2-
import _1_21_2 from './1.21.2'
1+
import _1_20_4 from './1.20.4'
32
import _1_21_4 from './1.21.4'
43

54
export default {
6-
'1.20.4': _1_20_5,
7-
'1.20.5': _1_20_5,
8-
'1.21.0': _1_20_5,
9-
'1.21.2': _1_21_2,
5+
'1.20.4': _1_20_4,
6+
'1.20.5': _1_20_4,
7+
'1.21.0': _1_20_4,
8+
'1.21.2': _1_20_4,
109
'1.21.4': _1_21_4,
1110
}

0 commit comments

Comments
 (0)