diff --git a/README.md b/README.md index f18c21e..0d7d3a7 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ To run without settings prompts, use flags: For example: ``` -./converter.sh MyResourcePack.zip -w "false" -m "MyBedrock.mcpack" -a "entity_alphatest_one_sided" -b "alpha_test" -f "null" -v "1.18.2" +./converter.sh MyResourcePack.zip -w "false" -m "MyBedrock.mcpack" -a "entity_alphatest_one_sided" -b "alpha_test" -f "null" -v "1.21.10" ``` ### Item Icons @@ -62,7 +62,7 @@ Your script and resource pack zip file must be in the same directory. Ensure tha You may also specify an input bedrock pack to merge with the output assets produced by the converter. This should be in the same directory as the script and your input Java pack. Like the Java pack, ensure that it is compressed with no root folder. When prompted, type the file name of the input file, such as `example_rp.mcpack`. Merging of behavior packs is not currently supported. -The packs generated by this script can currently only be used in Bedrock Edition 1.16.210.59 and above. Please be sure to enable the experimental setting "Holiday Creator Features" on world generation. You'll probably also want to be in creative mode as that will be the only way to give yourself the blocks generated by the script. Here are the commands to obtain one of the items or place them in your head slot: +The packs generated by this script can currently only be used in Bedrock Edition 1.26.0 and above. Please be sure to enable the experimental setting "Holiday Creator Features" on world generation. You'll probably also want to be in creative mode as that will be the only way to give yourself the blocks generated by the script. Here are the commands to obtain one of the items or place them in your head slot: ``` /give @p geysercmd:gmdl_xxxxxxx /replaceitem entity @p slot.armor.head 0 geysercmd:gmdl_xxxxxxx diff --git a/converter.sh b/converter.sh index b91c446..cd2ecf4 100755 --- a/converter.sh +++ b/converter.sh @@ -339,7 +339,7 @@ jq -c --arg pack_desc "${pack_desc}" --arg uuid1 "${uuid1}" --arg uuid2 "${uuid2 "name": $pack_desc, "uuid": ($uuid1 | ascii_downcase), "version": [1, 0, 0], - "min_engine_version": [1, 18, 3] + "min_engine_version": [1, 26, 0] }, "modules": [ { @@ -362,7 +362,7 @@ jq -c --arg pack_desc "${pack_desc}" --arg uuid1 "${uuid1}" --arg uuid3 "${uuid3 "name": $pack_desc, "uuid": ($uuid3 | ascii_downcase), "version": [1, 0, 0], - "min_engine_version": [ 1, 18, 3] + "min_engine_version": [ 1, 26, 0] }, "modules": [ { @@ -428,7 +428,7 @@ then status_message process "Now downloading the fallback resource pack:" printf "\e[3m\e[37m" echo - COLUMNS=$COLUMNS-1 curl --no-styled-output -#L -o default_assets.zip https://github.com/InventivetalentDev/minecraft-assets/zipball/refs/tags/${default_asset_version:=1.19.2} + COLUMNS=$COLUMNS-1 curl --no-styled-output -#L -o default_assets.zip https://github.com/InventivetalentDev/minecraft-assets/zipball/refs/tags/${default_asset_version:=1.21.10} echo printf "${C_CLOSE}" status_message completion "Fallback resources downloaded"