summaryrefslogtreecommitdiffstats
path: root/nms-patches/TileEntitySkull.patch
blob: 0ca418a42009f87ed7e8b8aa8e4dc0a54f88b8f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- a/net/minecraft/server/TileEntitySkull.java
+++ b/net/minecraft/server/TileEntitySkull.java
@@ -135,4 +135,10 @@
     public void setRotation(int i) {
         this.rotation = i;
     }
+
+    // CraftBukkit start - add method
+    public int getRotation() {
+        return this.rotation;
+    }
+    // CraftBukkit end
 }