mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-28 13:36:16 +01:00
Add methods to control thunder.
This commit is contained in:
parent
c3ce6ce3ab
commit
a042ee1e26
@ -571,4 +571,27 @@ public class CraftWorld implements World {
|
||||
public void setWeatherDuration(int duration) {
|
||||
world.worldData.c(duration);
|
||||
}
|
||||
|
||||
public boolean isThundering() {
|
||||
return world.worldData.j();
|
||||
}
|
||||
|
||||
public void setThundering(boolean thundering) {
|
||||
world.worldData.a(thundering);
|
||||
|
||||
// These numbers are from Minecraft
|
||||
if (thundering) {
|
||||
setThunderDuration(rand.nextInt(12000) + 3600);
|
||||
} else {
|
||||
setThunderDuration(rand.nextInt(168000) + 12000);
|
||||
}
|
||||
}
|
||||
|
||||
public int getThunderDuration() {
|
||||
return world.worldData.k();
|
||||
}
|
||||
|
||||
public void setThunderDuration(int duration) {
|
||||
world.worldData.b(duration);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user