#686: Expand Strider and Steerable entity API

By: Parker Hawke <hawkeboyz2@hotmail.com>
This commit is contained in:
CraftBukkit/Spigot
2020-06-30 09:54:28 +10:00
parent a78201fc5e
commit 8b8fc993bd
5 changed files with 216 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
--- a/net/minecraft/server/SaddleStorage.java
+++ b/net/minecraft/server/SaddleStorage.java
@@ -35,6 +35,15 @@
}
}
+ // CraftBukkit add setBoostTicks(int)
+ public void setBoostTicks(int ticks) {
+ this.a = true; // PAIL rename boosting
+ this.b = 0; // PAIL rename currentBoostTicks
+ this.c = ticks; // PAIL rename boostTicks
+ this.d.set(this.e, this.c); // PAIL rename dataWatcher, dataWatcherBoostTicks
+ }
+ // CraftBukkit end
+
public void a(NBTTagCompound nbttagcompound) {
nbttagcompound.setBoolean("Saddle", this.hasSaddle());
}