2016-09-11 04:42:47 +02:00
|
|
|
From 767a9ef7974c8e7f760f8bae8cfcb2c6207e8c71 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
|
2016-05-17 04:07:12 +02:00
|
|
|
index 076fcbb..9018df5 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
|
2016-05-17 04:07:12 +02:00
|
|
|
@@ -224,4 +224,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
|
2016-09-11 04:42:47 +02:00
|
|
|
index 9b5142c..54446aa 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
|
2016-05-12 04:07:46 +02:00
|
|
|
@@ -447,7 +447,7 @@ public class WorldServer extends World implements IAsyncTaskHandler {
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
this.methodProfiler.c("iceandsnow");
|
|
|
|
- if (this.random.nextInt(16) == 0) {
|
|
|
|
+ if (!this.paperConfig.disableIceAndSnow && this.random.nextInt(16) == 0) { // Paper - Disable ice and snow
|
|
|
|
this.l = this.l * 3 + 1013904223;
|
|
|
|
l = this.l >> 2;
|
|
|
|
blockposition = this.p(new BlockPosition(j + (l & 15), 0, k + (l >> 8 & 15)));
|
|
|
|
--
|
2016-09-11 04:42:47 +02:00
|
|
|
2.10.0.windows.1
|
2016-03-01 00:09:49 +01:00
|
|
|
|