From 9c4a95a6df67c4fdb0415ee555a417bed222dcb6 Mon Sep 17 00:00:00 2001 From: DaanV2 Date: Sat, 20 Jan 2024 10:53:06 +0100 Subject: [PATCH] Adding experimental blocks geos --- src/Base/Vanilla/ResourcePack/models.json | 4 +++ src/Lib/Vanilla/ResourcePack/models.ts | 4 ++- src/Lib/versions.ts | 40 ++++++++++++----------- 3 files changed, 28 insertions(+), 20 deletions(-) create mode 100644 src/Base/Vanilla/ResourcePack/models.json diff --git a/src/Base/Vanilla/ResourcePack/models.json b/src/Base/Vanilla/ResourcePack/models.json new file mode 100644 index 0000000..cce94d0 --- /dev/null +++ b/src/Base/Vanilla/ResourcePack/models.json @@ -0,0 +1,4 @@ +[ + "minecraft:geometry.full_block", + "minecraft:geometry.cross" +] \ No newline at end of file diff --git a/src/Lib/Vanilla/ResourcePack/models.ts b/src/Lib/Vanilla/ResourcePack/models.ts index 5dab4ef..c5e931b 100644 --- a/src/Lib/Vanilla/ResourcePack/models.ts +++ b/src/Lib/Vanilla/ResourcePack/models.ts @@ -174,5 +174,7 @@ export const Models: string[] = "geometry.zombie.v1.8", "geometry.zombie.villager", "geometry.zombie.villager_v2", - "geometry.zombie.villager.v1.8" + "geometry.zombie.villager.v1.8", + "minecraft:geometry.cross", + "minecraft:geometry.full_block" ] \ No newline at end of file diff --git a/src/Lib/versions.ts b/src/Lib/versions.ts index 13848a6..c6cd449 100644 --- a/src/Lib/versions.ts +++ b/src/Lib/versions.ts @@ -1,20 +1,22 @@ /** Notice: Auto generated file, do not edit */ - -import { FormatVersionData } from "./General"; - -export const Versions: FormatVersionData = { - latest: "1.20.50.3", - versions: [ - "1.20.50.3", - "1.20.40.1", - "1.20.30.1", - "1.20.10.1", - "1.20.0.1", - "1.19.80.2", - "1.19.70.2", - "1.19.60.3", - "1.19.50.2", - "1.19.40.2", - "1.19.30", - ], -}; + +import { FormatVersionData } from './General'; + + +export const Versions: FormatVersionData = +{ + "latest": "1.20.50.3", + "versions": [ + "1.20.50.3", + "1.20.40.1", + "1.20.30.1", + "1.20.10.1", + "1.20.0.1", + "1.19.80.2", + "1.19.70.2", + "1.19.60.3", + "1.19.50.2", + "1.19.40.2", + "1.19.30" + ] +} \ No newline at end of file