mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
14 lines
328 B
Diff
14 lines
328 B
Diff
--- 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
|
|
}
|