2019-07-24 05:20:14 +02:00
|
|
|
From f72bf6653918f2840874514d56aa069481de094f 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
|
2019-06-06 17:36:57 +02:00
|
|
|
index 6a307d5dd6..bf0cd6a8b4 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-04-25 08:53:51 +02:00
|
|
|
@@ -156,4 +156,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
|
2019-07-24 05:20:14 +02:00
|
|
|
index aec67b9bc0..48cd8913d1 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
|
2019-07-24 05:20:14 +02:00
|
|
|
@@ -389,7 +389,7 @@ public class WorldServer extends World {
|
2019-04-25 08:53:51 +02:00
|
|
|
gameprofilerfiller.enter("thunder");
|
|
|
|
BlockPosition blockposition;
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2019-04-25 08:53:51 +02:00
|
|
|
- if (flag && this.U() && this.random.nextInt(100000) == 0) {
|
|
|
|
+ if (!this.paperConfig.disableThunder && flag && this.U() && this.random.nextInt(100000) == 0) { // Paper - Disable thunder
|
|
|
|
blockposition = this.a(this.a(j, 0, k, 15));
|
|
|
|
if (this.isRainingAt(blockposition)) {
|
|
|
|
DifficultyDamageScaler difficultydamagescaler = this.getDamageScaler(blockposition);
|
2016-03-01 00:09:49 +01:00
|
|
|
--
|
2019-07-08 15:29:22 +02:00
|
|
|
2.22.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|