2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
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
|
|
|
|
index 083e421f8496b5336af473b108498ed28b984774..2f7a5a4a5a7b29750cfd777e0bc5d19a14e93fa2 100644
|
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
@@ -171,4 +171,9 @@ public class PaperWorldConfig {
|
|
|
|
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/level/ServerLevel.java b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2021-07-11 09:01:29 +02:00
|
|
|
index 2176d1db94de2a608deadf0cd3e95c3c9ffac019..6bde7dee09b9cf2b3acd66f9c9d55b338f20fe25 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2021-07-11 09:01:29 +02:00
|
|
|
@@ -577,7 +577,7 @@ public class ServerLevel extends Level implements WorldGenLevel {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gameprofilerfiller.popPush("iceandsnow");
|
|
|
|
- if (this.random.nextInt(16) == 0) {
|
|
|
|
+ if (!this.paperConfig.disableIceAndSnow && this.random.nextInt(16) == 0) { // Paper - Disable ice and snow
|
|
|
|
blockposition = this.getHeightmapPos(Heightmap.Types.MOTION_BLOCKING, this.getBlockRandomPos(j, 0, k, 15));
|
|
|
|
BlockPos blockposition1 = blockposition.below();
|
|
|
|
Biome biomebase = this.getBiome(blockposition);
|