From 427574928df10c036ff597c637a5a1573a66aef4 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Fri, 12 Mar 2021 17:14:49 -0500 Subject: [PATCH] Fix face texture being upside down when facing north --- .../net/shadowfacts/phycon/client/model/FaceDeviceModel.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/net/shadowfacts/phycon/client/model/FaceDeviceModel.kt b/src/main/kotlin/net/shadowfacts/phycon/client/model/FaceDeviceModel.kt index bf0c97c..9706be1 100644 --- a/src/main/kotlin/net/shadowfacts/phycon/client/model/FaceDeviceModel.kt +++ b/src/main/kotlin/net/shadowfacts/phycon/client/model/FaceDeviceModel.kt @@ -29,7 +29,7 @@ abstract class FaceDeviceModel: UnbakedModel, BakedModel { protected val defaultRotations = listOf( ModelRotation.X0_Y0, ModelRotation.X180_Y0, - ModelRotation.X270_Y0, + ModelRotation.X90_Y180, ModelRotation.X90_Y0, ModelRotation.X90_Y90, ModelRotation.X90_Y270,