Update to Minecraft 1.14.1

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2019-05-14 10:00:00 +10:00
parent 1825747f6d
commit 788fd7eedc
60 changed files with 322 additions and 587 deletions

View File

@@ -33,7 +33,7 @@
public void setThundering(boolean flag) {
+ // CraftBukkit start
+ if (this.z == flag) {
+ if (this.thundering == flag) {
+ return;
+ }
+
@@ -46,7 +46,7 @@
+ }
+ }
+ // CraftBukkit end
this.z = flag;
this.thundering = flag;
}
@@ -524,6 +545,20 @@
@@ -54,7 +54,7 @@
public void setStorm(boolean flag) {
+ // CraftBukkit start
+ if (this.x == flag) {
+ if (this.raining == flag) {
+ return;
+ }
+
@@ -67,7 +67,7 @@
+ }
+ }
+ // CraftBukkit end
this.x = flag;
this.raining = flag;
}
@@ -673,6 +708,12 @@