2021-06-12 00:37:16 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Tue, 1 Mar 2016 23:58:50 -0600
|
|
|
|
Subject: [PATCH] Configurable top of nether void damage
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-11-24 18:58:26 +01:00
|
|
|
index 6dec1bb96d695f28aae6517e4d78249169d2351a..1b090f2e38a8857ef74403e1f3db8c2ba7127297 100644
|
2021-06-12 00:37:16 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-11-24 18:58:26 +01:00
|
|
|
@@ -180,4 +180,19 @@ public class PaperWorldConfig {
|
2021-06-12 00:37:16 +02:00
|
|
|
if (fallingBlockHeightNerf != 0) log("Falling Block Height Limit set to Y: " + fallingBlockHeightNerf);
|
|
|
|
if (entityTNTHeightNerf != 0) log("TNT Entity Height Limit set to Y: " + entityTNTHeightNerf);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int netherVoidTopDamageHeight;
|
|
|
|
+ public boolean doNetherTopVoidDamage() { return netherVoidTopDamageHeight > 0; }
|
|
|
|
+ private void netherVoidTopDamageHeight() {
|
|
|
|
+ netherVoidTopDamageHeight = getInt("nether-ceiling-void-damage-height", 0);
|
|
|
|
+ log("Top of the nether void damage height: " + netherVoidTopDamageHeight);
|
|
|
|
+
|
|
|
|
+ if (PaperConfig.version < 18) {
|
|
|
|
+ boolean legacy = getBoolean("nether-ceiling-void-damage", false);
|
|
|
|
+ if (legacy) {
|
|
|
|
+ netherVoidTopDamageHeight = 128;
|
|
|
|
+ set("nether-ceiling-void-damage-height", netherVoidTopDamageHeight);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
2021-11-23 13:15:10 +01:00
|
|
|
index ff233d417d3f4f8fa4fa9ae9e77de7640102a172..6bc8c8e15e66cd54cbb6ebc6d09a6fe8652b5d18 100644
|
2021-06-12 00:37:16 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
2021-11-23 13:15:10 +01:00
|
|
|
@@ -634,7 +634,11 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource, i
|
2021-06-12 00:37:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void checkOutOfWorld() {
|
|
|
|
- if (this.getY() < (double) (this.level.getMinBuildHeight() - 64)) {
|
|
|
|
+ // Paper start - Configurable nether ceiling damage
|
|
|
|
+ if (this.getY() < (double) (this.level.getMinBuildHeight() - 64) || (this.level.getWorld().getEnvironment() == org.bukkit.World.Environment.NETHER
|
|
|
|
+ && level.paperConfig.doNetherTopVoidDamage()
|
|
|
|
+ && this.getY() >= this.level.paperConfig.netherVoidTopDamageHeight)) {
|
|
|
|
+ // Paper end
|
|
|
|
this.outOfWorld();
|
|
|
|
}
|
|
|
|
|