blob: f62aca67d09e1c488c32d2a76b1c6e263de91f9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- /home/matt/mc-dev-private//net/minecraft/server/TileEntitySkull.java 2015-02-26 22:40:23.167608133 +0000
+++ src/main/java/net/minecraft/server/TileEntitySkull.java 2015-02-26 22:40:23.167608133 +0000
@@ -105,4 +105,10 @@
public void setRotation(int i) {
this.rotation = i;
}
+
+ // CraftBukkit start - add method
+ public int getRotation() {
+ return this.rotation;
+ }
+ // CraftBukkit end
}
|