summaryrefslogtreecommitdiffstats
path: root/nms-patches/TileEntitySkull.patch
blob: c4201967ee82a3876e09113fc2f11c2b8fdce0ca (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
@@ -105,4 +105,10 @@
     public void setRotation(int i) {
         this.rotation = i;
     }
+
+    // CraftBukkit start - add method
+    public int getRotation() {
+        return this.rotation;
+    }
+    // CraftBukkit end
 }