mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
14 lines
437 B
Diff
14 lines
437 B
Diff
--- /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
|
|
}
|