diff --git a/README.md b/README.md index f557961d..42067bca 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A plugin for [MCreator](https://mcreator.net/), a code generator to create Minec This project is not official. It is not affiliated with the respective owners and maintainers of Fabric, Minecraft, or MCreator. Do not expect any official support from their communities. -**The current targeted Minecraft version is 1.17.1.** +**The current targeted Minecraft version is 1.19.1.** ## Features Unsupported fields in full supported mod elements are features from Forge only. They are not available with Fabric yet. @@ -36,17 +36,17 @@ Unsupported fields in full supported mod elements are features from Forge only. ### Partially supported (almost completed) * Armor -* Biome -* Dimension * Living entity * Ranged item ### Partially supported +* Biome * Procedure * Variables // Global scopes, except Global session, are missing. ### Unsupported +* Dimension * Fluid * Villager trade @@ -56,14 +56,14 @@ Pre-built binaries can be found on the [Release page of this repository](https:/ Install like any other plugin: Launch MCreator -> Open preferences -> Manage plugins -> Load Plugin -> Find your downloaded zip file -> **Restart MCreator**. ## Important Information -- Make sure you use MCreator 2021.1.18711 or a newer version +- Make sure you use MCreator 2022.2.31711 or a newer version - Back up your workspace before updating to a newer version of the plugin. - Mods will also require [Fabric API](https://www.curseforge.com/minecraft/mc-mods/fabric-api) to function properly, so when you want to play your mod, make sure you have fabric api. ## Credits/License -Lead Dev - [Goldorion](https://github.com/Goldorion) +Dev - [Goldorion](https://github.com/Goldorion) Contributors (previous Minecraft versions) - crispy_chips1234, Klemen, U1timateJ7, BoogieMonster1O1 -This generator re-uses a lot of the code used by the official Forge 1.17.1 generator. +This generator re-uses code used from the official Forge 1.17.1-1.18.2 generators. The plugin's MCreator page is [here](https://mcreator.net/plugin/64512/mcreator-fabric-generator}). The plugin's MCreator forum page is [here](https://mcreator.net/forum/60201/fabric-generator-plugin). diff --git a/changelog.md b/changelog.md index 1ff01c83..5a1f85e1 100644 --- a/changelog.md +++ b/changelog.md @@ -10,6 +10,7 @@ Notes: 1.19 mappings will come after official data lists are updated. Biomes are far from being as in the 1.17.1 generator because I will now need to use TerraBlender to generate biomes in the overworld. Even if I support Nether and End gens, I can't apply surface rules currently and so, I will also need TerraBlender. Dimensions are also not done because they changed once again between 1.18.2 and 1.19, and I didn't find how to port them. +You can also expect several bugs, mostly when using procedure blocks. ## 1.6 diff --git a/src/fabric-1.19/dimension.definition.yaml b/src/fabric-1.19/dimension.definition.yaml deleted file mode 100644 index 485eb2a3..00000000 --- a/src/fabric-1.19/dimension.definition.yaml +++ /dev/null @@ -1,19 +0,0 @@ -templates: - - template: json/dimension/dimension_type.json.ftl - writer: json - name: "@MODDATAROOT/dimension_type/@registryname.json" - - template: json/dimension/dimension_overworld.json.ftl - writer: json - condition: "worldGenType %= Normal world gen" - name: "@MODDATAROOT/dimension/@registryname.json" - - template: json/dimension/dimension_nether.json.ftl - writer: json - condition: "worldGenType %= Nether like gen" - name: "@MODDATAROOT/dimension/@registryname.json" - - template: json/dimension/dimension_end.json.ftl - writer: json - condition: "worldGenType %= End like gen" - name: "@MODDATAROOT/dimension/@registryname.json" - -field_inclusions: [mainFillerBlock, fluidBlock, biomesInDimension, imitateOverworldBehaviour, canRespawnHere, - hasFog, isDark, doesWaterVaporize, sleepResult, hasSkyLight, imitateOverworldBehaviour, worldGenType] \ No newline at end of file diff --git a/src/plugin.json b/src/plugin.json index f87a23a1..e75e88ce 100644 --- a/src/plugin.json +++ b/src/plugin.json @@ -4,7 +4,7 @@ "weight": 11, "info": { "name": "Minecraft Fabric 1.19.1 Generator", - "version": "1.6", + "version": "1.7-beta-1", "description": "A Fabric generator", "author": "Goldorion", "credits": "Thank you to all contributors and built-in MCreator generators.", diff --git a/update.json b/update.json index 75ea46f9..1c7236b7 100644 --- a/update.json +++ b/update.json @@ -1,5 +1,5 @@ { - "generator-fabric-1.17.1": { - "latest": "1.6" + "generator-fabric-1.19.1": { + "latest": "1.7-beta-1" } }