2019-05-27 11:13:41 +02:00
|
|
|
From b0268160dfc28f598d49d21353df1a308d1e6bf4 Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01:00
|
|
|
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
|
2019-05-27 11:13:41 +02:00
|
|
|
index 1ed58f4bb..a797a5767 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-05 07:27:37 +02:00
|
|
|
@@ -124,4 +124,19 @@ public class PaperWorldConfig {
|
2018-07-15 03:53:17 +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);
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
+
|
2019-04-05 06:52:02 +02:00
|
|
|
+ public int netherVoidTopDamageHeight;
|
2019-04-05 07:27:37 +02:00
|
|
|
+ public boolean doNetherTopVoidDamage() { return netherVoidTopDamageHeight > 0; }
|
2019-04-05 06:52:02 +02:00
|
|
|
+ private void netherVoidTopDamageHeight() {
|
2019-04-05 07:27:37 +02:00
|
|
|
+ netherVoidTopDamageHeight = getInt("nether-ceiling-void-damage-height", 0);
|
2019-04-05 06:52:02 +02:00
|
|
|
+ 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);
|
|
|
|
+ }
|
|
|
|
+ }
|
2016-03-01 00:09:49 +01:00
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2019-05-27 11:13:41 +02:00
|
|
|
index de57289fe..fef69c7c3 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2019-05-26 03:56:30 +02:00
|
|
|
@@ -397,9 +397,15 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2016-06-18 07:25:37 +02:00
|
|
|
this.fallDistance *= 0.5F;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - Configurable nether ceiling damage
|
|
|
|
+ // Extracted to own function
|
|
|
|
+ /*
|
|
|
|
if (this.locY < -64.0D) {
|
2019-04-24 04:34:11 +02:00
|
|
|
this.ae();
|
2016-06-18 07:25:37 +02:00
|
|
|
}
|
|
|
|
+ */
|
2019-04-05 06:52:02 +02:00
|
|
|
+ this.performVoidDamage();
|
2016-06-18 07:25:37 +02:00
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
if (!this.world.isClientSide) {
|
|
|
|
this.setFlag(0, this.fireTicks > 0);
|
2019-05-26 03:56:30 +02:00
|
|
|
@@ -409,6 +415,17 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2019-04-24 04:34:11 +02:00
|
|
|
this.world.getMethodProfiler().exit();
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
+ // Paper start
|
2019-04-05 06:52:02 +02:00
|
|
|
+ protected void performVoidDamage() {
|
2019-04-05 07:27:37 +02:00
|
|
|
+ if (this.locY < -64.0D || (this.world.getWorld().getEnvironment() == org.bukkit.World.Environment.NETHER
|
|
|
|
+ && world.paperConfig.doNetherTopVoidDamage()
|
|
|
|
+ && this.locY >= world.paperConfig.netherVoidTopDamageHeight)) {
|
|
|
|
+
|
2019-04-05 06:52:02 +02:00
|
|
|
+ this.doVoidDamage();
|
2016-06-18 07:25:37 +02:00
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
2018-07-15 03:53:17 +02:00
|
|
|
protected void E() {
|
2016-06-18 07:25:37 +02:00
|
|
|
if (this.portalCooldown > 0) {
|
|
|
|
--this.portalCooldown;
|
2019-05-26 03:56:30 +02:00
|
|
|
@@ -476,6 +493,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2016-06-18 07:25:37 +02:00
|
|
|
this.fireTicks = 0;
|
|
|
|
}
|
|
|
|
|
2019-04-24 04:34:11 +02:00
|
|
|
+ protected final void doVoidDamage() { this.ae(); } // Paper - OBFHELPER
|
|
|
|
protected void ae() {
|
2016-06-18 07:25:37 +02:00
|
|
|
this.die();
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityMinecartAbstract.java b/src/main/java/net/minecraft/server/EntityMinecartAbstract.java
|
2019-05-27 11:13:41 +02:00
|
|
|
index 4d2ef9a02..6fc332dbf 100644
|
2016-06-18 07:25:37 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityMinecartAbstract.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityMinecartAbstract.java
|
2019-04-24 04:34:11 +02:00
|
|
|
@@ -182,9 +182,15 @@ public abstract class EntityMinecartAbstract extends Entity {
|
2016-06-18 07:25:37 +02:00
|
|
|
this.setDamage(this.getDamage() - 1.0F);
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
|
2016-06-18 07:25:37 +02:00
|
|
|
+ // Paper start - Configurable nether ceiling damage
|
|
|
|
+ // Extracted to own function
|
|
|
|
+ /*
|
|
|
|
if (this.locY < -64.0D) {
|
2019-04-24 04:34:11 +02:00
|
|
|
this.ae();
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
2016-06-18 07:25:37 +02:00
|
|
|
+ */
|
2019-04-05 06:52:02 +02:00
|
|
|
+ this.performVoidDamage();
|
2016-06-18 07:25:37 +02:00
|
|
|
+ // Paper end
|
|
|
|
|
2019-04-24 04:34:11 +02:00
|
|
|
// this.doPortalTick(); // CraftBukkit - handled in postTick
|
|
|
|
if (this.world.isClientSide) {
|
2016-03-01 00:09:49 +01:00
|
|
|
--
|
2019-04-05 06:52:02 +02:00
|
|
|
2.21.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|