mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
SPIGOT-4765: WeatherChangeEvent occurs every tick
This commit is contained in:
parent
8f2a45bf35
commit
abab38526a
@ -28,11 +28,15 @@
|
||||
}
|
||||
|
||||
public long getSeed() {
|
||||
@@ -508,6 +515,16 @@
|
||||
@@ -508,6 +515,20 @@
|
||||
}
|
||||
|
||||
public void setThundering(boolean flag) {
|
||||
+ // CraftBukkit start
|
||||
+ if (this.z == flag) {
|
||||
+ return;
|
||||
+ }
|
||||
+
|
||||
+ org.bukkit.World world = Bukkit.getWorld(getName());
|
||||
+ if (world != null) {
|
||||
+ ThunderChangeEvent thunder = new ThunderChangeEvent(world, flag);
|
||||
@ -45,11 +49,15 @@
|
||||
this.z = flag;
|
||||
}
|
||||
|
||||
@@ -524,6 +541,16 @@
|
||||
@@ -524,6 +545,20 @@
|
||||
}
|
||||
|
||||
public void setStorm(boolean flag) {
|
||||
+ // CraftBukkit start
|
||||
+ if (this.x == flag) {
|
||||
+ return;
|
||||
+ }
|
||||
+
|
||||
+ org.bukkit.World world = Bukkit.getWorld(getName());
|
||||
+ if (world != null) {
|
||||
+ WeatherChangeEvent weather = new WeatherChangeEvent(world, flag);
|
||||
@ -62,7 +70,7 @@
|
||||
this.x = flag;
|
||||
}
|
||||
|
||||
@@ -673,6 +700,12 @@
|
||||
@@ -673,6 +708,12 @@
|
||||
|
||||
public void setDifficulty(EnumDifficulty enumdifficulty) {
|
||||
this.G = enumdifficulty;
|
||||
@ -75,7 +83,7 @@
|
||||
}
|
||||
|
||||
public boolean isDifficultyLocked() {
|
||||
@@ -777,4 +810,12 @@
|
||||
@@ -777,4 +818,12 @@
|
||||
public void a(UUID uuid) {
|
||||
this.X = uuid;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user