You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.chunkDataController = new ca.spottedleaf.moonrise.patches.chunk_system.io.datacontroller.ChunkDataController((ServerLevel)(Object)this, this.chunkTaskScheduler);
+ if (this.purpurConfig.rainStopsAfterSleep) // Purpur - Option for if rain and thunder should stop on sleep
153
153
this.serverLevelData.setRaining(false, org.bukkit.event.weather.WeatherChangeEvent.Cause.SLEEP); // Paper - Add cause to Weather/ThunderChangeEvents
154
154
// If we stop due to everyone sleeping we should reset the weather duration to some other random value.
155
155
// Not that everyone ever manages to get the whole server to sleep at the same time....
156
-
@@ -928,6 +_,7 @@
156
+
@@ -1196,6 +_,7 @@
157
157
this.serverLevelData.setRainTime(0);
158
158
}
159
159
// CraftBukkit end
160
160
+ if (this.purpurConfig.thunderStopsAfterSleep) // Purpur - Option for if rain and thunder should stop on sleep
161
161
this.serverLevelData.setThundering(false, org.bukkit.event.weather.ThunderChangeEvent.Cause.SLEEP); // Paper - Add cause to Weather/ThunderChangeEvents
162
162
// CraftBukkit start
163
163
// If we stop due to everyone sleeping we should reset the weather duration to some other random value.
164
-
@@ -2331,7 +_,7 @@
164
+
@@ -2644,7 +_,7 @@
165
165
// Spigot start
166
166
if (entity.getBukkitEntity() instanceof org.bukkit.inventory.InventoryHolder && (!(entity instanceof ServerPlayer) || entity.getRemovalReason() != Entity.RemovalReason.KILLED)) { // SPIGOT-6876: closeInventory clears death message
167
167
// Paper start - Fix merchant inventory not closing on entity removal
0 commit comments