From f2a4a5f1141d289a5430b3628a54cc8019aea7e1 Mon Sep 17 00:00:00 2001 From: Sollace Date: Thu, 16 May 2024 21:47:17 +0100 Subject: [PATCH] Fix door lighting. Fixes #346 --- .../resources/assets/unicopia/models/block/door_left.json | 8 ++++---- .../assets/unicopia/models/block/door_right.json | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/resources/assets/unicopia/models/block/door_left.json b/src/main/resources/assets/unicopia/models/block/door_left.json index 6c5b0b27..e0a63f70 100644 --- a/src/main/resources/assets/unicopia/models/block/door_left.json +++ b/src/main/resources/assets/unicopia/models/block/door_left.json @@ -9,10 +9,10 @@ "faces": { "up": { "uv": [ 13, 0, 16, 16 ], "texture": "#bottom", "cullface": "up" }, "down": { "uv": [ 13, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, - "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "north" }, - "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "south" }, - "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "west" }, - "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#top", "cullface": "east" } + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top" }, + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#top" } } } ] diff --git a/src/main/resources/assets/unicopia/models/block/door_right.json b/src/main/resources/assets/unicopia/models/block/door_right.json index bf096276..632e5e99 100644 --- a/src/main/resources/assets/unicopia/models/block/door_right.json +++ b/src/main/resources/assets/unicopia/models/block/door_right.json @@ -9,10 +9,10 @@ "faces": { "up": { "uv": [ 13, 0, 16, 16 ], "texture": "#bottom", "cullface": "up" }, "down": { "uv": [ 13, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" }, - "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top", "cullface": "north" }, - "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top", "cullface": "south" }, - "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#top", "cullface": "west" }, - "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "east" } + "north": { "uv": [ 3, 0, 0, 16 ], "texture": "#top" }, + "south": { "uv": [ 0, 0, 3, 16 ], "texture": "#top" }, + "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#top" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" } } } ]