2020-03-19 07:03:32 +01:00
|
|
|
From 57e7eb12376863a7faa4fba8cce5b5fec37f0767 Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01:00
|
|
|
From: Sudzzy <originmc@outlook.com>
|
|
|
|
Date: Wed, 2 Mar 2016 14:57:24 -0600
|
|
|
|
Subject: [PATCH] Disable ice and snow
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-03-19 07:03:32 +01:00
|
|
|
index 41436a4ead..f53d8b9675 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-10-27 00:55:58 +02:00
|
|
|
@@ -166,4 +166,9 @@ public class PaperWorldConfig {
|
2016-03-01 00:09:49 +01:00
|
|
|
private void disableThunder() {
|
|
|
|
disableThunder = getBoolean("disable-thunder", false);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean disableIceAndSnow;
|
|
|
|
+ private void disableIceAndSnow(){
|
|
|
|
+ disableIceAndSnow = getBoolean("disable-ice-and-snow", false);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
|
2020-03-19 07:03:32 +01:00
|
|
|
index 3ba54917af..4309a7d07a 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
2020-03-19 07:03:32 +01:00
|
|
|
@@ -465,7 +465,7 @@ public class WorldServer extends World {
|
2019-04-25 08:53:51 +02:00
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2019-04-25 08:53:51 +02:00
|
|
|
gameprofilerfiller.exitEnter("iceandsnow");
|
|
|
|
- if (this.random.nextInt(16) == 0) {
|
|
|
|
+ if (!this.paperConfig.disableIceAndSnow && this.random.nextInt(16) == 0) { // Paper - Disable ice and snow
|
|
|
|
blockposition = this.getHighestBlockYAt(HeightMap.Type.MOTION_BLOCKING, this.a(j, 0, k, 15));
|
|
|
|
BlockPosition blockposition1 = blockposition.down();
|
|
|
|
BiomeBase biomebase = this.getBiome(blockposition);
|
2016-03-01 00:09:49 +01:00
|
|
|
--
|
2020-03-19 07:03:32 +01:00
|
|
|
2.25.2
|
2016-03-01 00:09:49 +01:00
|
|
|
|