-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* worldgen * don't test worldgen - tests with worldgen files are broken in lectern snapshots: mcbeet/lectern#361 * Update TODO.md
- Loading branch information
Showing
16 changed files
with
167 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## TODO: | ||
- add worldgen support | ||
- merge nested overlays (overlays in the target pack) | ||
- create more tests | ||
- allow separate dp and rp default formats | ||
- restore worldgen tests once [lectern #361](https://github.com/mcbeet/lectern/issues/361) is fixed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "demo:this-is-the-same-in-both", | ||
"generator": { | ||
"type": "minecraft:debug" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "demo:this-only-exists-in-the-overlay", | ||
"generator": { | ||
"type": "minecraft:debug" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"pack": { | ||
"pack_format": 57, | ||
"description": "", | ||
"supported_formats": [ | ||
48, | ||
57 | ||
] | ||
}, | ||
"overlays": { | ||
"entries": [ | ||
{ | ||
"formats": 48, | ||
"directory": "overlay_48" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
data_pack: | ||
load: src | ||
pack_format: 57 | ||
supported_formats: [48,57] | ||
|
||
pipeline: | ||
- beet_observer | ||
|
||
meta: | ||
observer: | ||
overlays: | ||
- process: proc |
6 changes: 6 additions & 0 deletions
6
examples/overlay_adds_dimension1_nosnap/proc/data/demo/dimension/demo.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "demo:this-only-exists-in-the-overlay", | ||
"generator": { | ||
"type": "minecraft:debug" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
examples/overlay_adds_dimension1_nosnap/proc/data/demo/dimension/foo.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "demo:this-is-the-same-in-both", | ||
"generator": { | ||
"type": "minecraft:debug" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"pack": { | ||
"pack_format": 48, | ||
"description": "" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
examples/overlay_adds_dimension1_nosnap/src/data/demo/dimension/foo.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "demo:this-is-the-same-in-both", | ||
"generator": { | ||
"type": "minecraft:debug" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
data_pack: | ||
load: src |
6 changes: 6 additions & 0 deletions
6
examples/sanity_test_worldgen_nosnap/src/data/demo/dimension/demo.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "demo:in-the-base-pack", | ||
"generator": { | ||
"type": "minecraft:debug" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
data_pack: | ||
load: src | ||
overlays: | ||
- formats: | ||
min_inclusive: 48 | ||
max_inclusive: 48 | ||
directory: overlay_48 |
6 changes: 6 additions & 0 deletions
6
examples/sanity_test_worldgen_overlay_nosnap/src/data/demo/dimension/demo.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "demo:in-the-base-pack", | ||
"generator": { | ||
"type": "minecraft:debug" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
examples/sanity_test_worldgen_overlay_nosnap/src/overlay_48/data/demo/dimension/demo.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "demo:in-the-overlay-pack", | ||
"generator": { | ||
"type": "minecraft:debug" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters