2016-03-25 05:59:37 +01:00
|
|
|
From dd9fa935272cef1509b649a54ed2cdd2c5b6d67a 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:52:43 -0600
|
|
|
|
Subject: [PATCH] Disable thunder
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2016-03-19 03:10:20 +01:00
|
|
|
index 6fce2b3..ea9043a 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-03-19 03:10:20 +01:00
|
|
|
@@ -226,4 +226,9 @@ public class PaperWorldConfig {
|
2016-03-01 00:09:49 +01:00
|
|
|
private void disableExplosionKnockback(){
|
|
|
|
disableExplosionKnockback = getBoolean("disable-explosion-knockback", false);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean disableThunder;
|
|
|
|
+ private void disableThunder() {
|
|
|
|
+ disableThunder = getBoolean("disable-thunder", false);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
|
2016-03-25 05:59:37 +01:00
|
|
|
index e2a7187..f87cd59 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-03-03 10:46:26 +01:00
|
|
|
@@ -417,7 +417,8 @@ public class WorldServer extends World implements IAsyncTaskHandler {
|
2016-03-01 00:09:49 +01:00
|
|
|
int l;
|
|
|
|
BlockPosition blockposition;
|
|
|
|
|
|
|
|
- if (flag && flag1 && this.random.nextInt(100000) == 0) {
|
|
|
|
+ // Paper - Disable thunder
|
|
|
|
+ if (!this.paperConfig.disableThunder && flag && flag1 && this.random.nextInt(100000) == 0) {
|
|
|
|
this.l = this.l * 3 + 1013904223;
|
|
|
|
l = this.l >> 2;
|
|
|
|
blockposition = this.a(new BlockPosition(j + (l & 15), 0, k + (l >> 8 & 15)));
|
|
|
|
--
|
2016-03-25 05:59:37 +01:00
|
|
|
2.7.1.windows.2
|
2016-03-01 00:09:49 +01:00
|
|
|
|