2
0
mirror of https://github.com/PaperMC/Paper.git synced 2025-03-07 15:38:14 +08:00
Paper/nms-patches/TileEntitySkull.patch
2015-05-25 20:37:24 +10:00

14 lines
328 B
Diff

--- a/net/minecraft/server/TileEntitySkull.java
+++ b/net/minecraft/server/TileEntitySkull.java
@@ -105,4 +105,10 @@
public void setRotation(int i) {
this.rotation = i;
}
+
+ // CraftBukkit start - add method
+ public int getRotation() {
+ return this.rotation;
+ }
+ // CraftBukkit end
}