Files
Purpur/patches/server/0158-Fix-rotating-UP-DOWN-CW-and-CCW.patch
2021-03-31 15:49:55 -05:00

37 lines
1.5 KiB
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: BillyGalbreath <blake.galbreath@gmail.com>
Date: Wed, 6 Jan 2021 02:19:29 -0600
Subject: [PATCH] Fix rotating UP/DOWN CW and CCW
diff --git a/src/main/java/net/minecraft/core/EnumDirection.java b/src/main/java/net/minecraft/core/EnumDirection.java
index 29d747f7fc5824a222755ebf96dfe053896d43d0..9f1ea11d0bc15b8b0069fcf46ea2f6751c5e3064 100644
--- a/src/main/java/net/minecraft/core/EnumDirection.java
+++ b/src/main/java/net/minecraft/core/EnumDirection.java
@@ -127,6 +127,12 @@ public enum EnumDirection implements INamable {
return EnumDirection.NORTH;
case EAST:
return EnumDirection.SOUTH;
+ // Purpur start
+ case UP:
+ return EnumDirection.UP;
+ case DOWN:
+ return EnumDirection.DOWN;
+ // Purpur end
default:
throw new IllegalStateException("Unable to get Y-rotated facing of " + this);
}
@@ -143,6 +149,12 @@ public enum EnumDirection implements INamable {
return EnumDirection.SOUTH;
case EAST:
return EnumDirection.NORTH;
+ // Purpur start
+ case UP:
+ return EnumDirection.UP;
+ case DOWN:
+ return EnumDirection.DOWN;
+ // Purpur end
default:
throw new IllegalStateException("Unable to get CCW facing of " + this);
}