Skip to content

Commit 09ec0b2

Browse files
committed
misc
1 parent 8cc81c1 commit 09ec0b2

File tree

20 files changed

+49
-713
lines changed

20 files changed

+49
-713
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ jobs:
1414
with:
1515
fetch-depth: 0
1616
- name: build
17-
run: zip -r profile.zip overrides manifest.json
17+
run: ./scripts/export_profile.py profile.zip
1818
- name: version
19-
run: echo 'version=$(python3 -c "import json;print(json.load(open(\"manifest.json\"))[\"manifestVersion\"])")' >> $GITHUB_OUTPUT
19+
run: |
20+
VERSION=$(python3 -c 'import json;print(json.load(open("manifest.json"))["manifestVersion"])')
21+
echo "version=$VERSION" >> $GITHUB_OUTPUT
2022
id: version
2123
- name: release
2224
# enabled Workflow write permission

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
* Tweaked some structures (fixes stability)
2-
* Fixed crash with interaction of Mo' Bends, WAASL, Twilight Forest
1+
* Fixed aether (buggy mobs + incompatibility with ebwizardry)
2+
* Misc structure changes: improved generation, new structures

manifest.json

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"manifestType": "minecraftModpack",
12-
"manifestVersion": 19,
12+
"manifestVersion": 21,
1313
"name": "John's 1.12.2",
1414
"author": "",
1515
"files": [
@@ -140,7 +140,7 @@
140140
},
141141
{
142142
"projectID": 239197,
143-
"fileID": 6061762,
143+
"fileID": 6821954,
144144
"required": true
145145
},
146146
{
@@ -190,7 +190,7 @@
190190
},
191191
{
192192
"projectID": 247401,
193-
"fileID": 5655181,
193+
"fileID": 6348753,
194194
"required": true
195195
},
196196
{
@@ -255,7 +255,7 @@
255255
},
256256
{
257257
"projectID": 255308,
258-
"fileID": 5035622,
258+
"fileID": 5028344,
259259
"required": true
260260
},
261261
{
@@ -275,7 +275,7 @@
275275
},
276276
{
277277
"projectID": 263420,
278-
"fileID": 6012809,
278+
"fileID": 6777996,
279279
"required": true
280280
},
281281
{
@@ -425,7 +425,7 @@
425425
},
426426
{
427427
"projectID": 317780,
428-
"fileID": 5987126,
428+
"fileID": 6778077,
429429
"required": true
430430
},
431431
{
@@ -493,6 +493,11 @@
493493
"fileID": 5688058,
494494
"required": true
495495
},
496+
{
497+
"projectID": 376040,
498+
"fileID": 2943808,
499+
"required": true
500+
},
496501
{
497502
"projectID": 387443,
498503
"fileID": 3813940,
@@ -520,7 +525,7 @@
520525
},
521526
{
522527
"projectID": 556777,
523-
"fileID": 6069258,
528+
"fileID": 6327271,
524529
"required": true
525530
},
526531
{
@@ -545,4 +550,4 @@
545550
}
546551
],
547552
"overrides": "overrides"
548-
}
553+
}

modlist.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
<li><a href="https://www.curseforge.com/minecraft/mc-mods/torchslabs-mod">Torch Slabs Mod (by EndlesNights)</a></li>
9595
<li><a href="https://www.curseforge.com/minecraft/mc-mods/unloader">Unloader (by Unnoen)</a></li>
9696
<li><a href="https://www.curseforge.com/minecraft/mc-mods/uppers">Uppers (by vadis365)</a></li>
97+
<li><a href="https://www.curseforge.com/minecraft/mc-mods/vanilla-anvil-repair">Vanilla Anvil Repair (by eksekk)</a></li>
9798
<li><a href="https://www.curseforge.com/minecraft/mc-mods/vanillafix">VanillaFix (by Runemoro)</a></li>
9899
<li><a href="https://www.curseforge.com/minecraft/mc-mods/visuals">Visuals (by Zeith)</a></li>
99100
<li><a href="https://www.curseforge.com/minecraft/mc-mods/waystones">Waystones (by BlayTheNinth)</a></li>

0 commit comments

Comments
 (0)