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