2020-04-08 09:49:15 +02:00
|
|
|
From 3046e2bc8ac417f59ec00f31522e408c5868ea69 Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01:00
|
|
|
From: Byteflux <byte@byteflux.net>
|
|
|
|
Date: Tue, 1 Mar 2016 14:14:15 -0600
|
|
|
|
Subject: [PATCH] Drop falling block and tnt entities at the specified height
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-02-21 18:52:20 +01:00
|
|
|
index 8ee2b9bb1b..d59b82b7bb 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-10-27 00:55:58 +02:00
|
|
|
@@ -119,4 +119,14 @@ public class PaperWorldConfig {
|
2016-03-01 00:09:49 +01:00
|
|
|
keepSpawnInMemory = getBoolean("keep-spawn-loaded", true);
|
|
|
|
log("Keep spawn chunk loaded: " + keepSpawnInMemory);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int fallingBlockHeightNerf;
|
|
|
|
+ public int entityTNTHeightNerf;
|
|
|
|
+ private void heightNerfs() {
|
|
|
|
+ fallingBlockHeightNerf = getInt("falling-block-height-nerf", 0);
|
|
|
|
+ entityTNTHeightNerf = getInt("tnt-entity-height-nerf", 0);
|
|
|
|
+
|
|
|
|
+ if (fallingBlockHeightNerf != 0) log("Falling Block Height Limit set to Y: " + fallingBlockHeightNerf);
|
|
|
|
+ if (entityTNTHeightNerf != 0) log("TNT Entity Height Limit set to Y: " + entityTNTHeightNerf);
|
|
|
|
+ }
|
|
|
|
}
|
2017-05-14 20:05:01 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2020-04-02 06:43:11 +02:00
|
|
|
index 957330b673..7d4badd974 100644
|
2017-05-14 20:05:01 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2020-04-02 06:43:11 +02:00
|
|
|
@@ -1818,6 +1818,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2018-07-15 03:53:17 +02:00
|
|
|
return this.a(itemstack, 0.0F);
|
2017-05-14 20:05:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ @Nullable public final EntityItem dropItem(ItemStack itemstack, float offset) { return this.a(itemstack, offset); } // Paper - OBFHELPER
|
|
|
|
@Nullable
|
|
|
|
public EntityItem a(ItemStack itemstack, float f) {
|
|
|
|
if (itemstack.isEmpty()) {
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityFallingBlock.java b/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
2020-04-08 09:49:15 +02:00
|
|
|
index 4b4e71bf70..2097ec535e 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
2020-04-08 09:49:15 +02:00
|
|
|
@@ -85,6 +85,17 @@ public class EntityFallingBlock extends Entity {
|
2019-06-16 15:47:23 +02:00
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2019-06-16 15:47:23 +02:00
|
|
|
this.move(EnumMoveType.SELF, this.getMot());
|
|
|
|
+
|
|
|
|
+ // Paper start - Configurable EntityFallingBlock height nerf
|
2019-12-12 19:45:00 +01:00
|
|
|
+ if (this.world.paperConfig.fallingBlockHeightNerf != 0 && this.locY() > this.world.paperConfig.fallingBlockHeightNerf) {
|
2019-06-25 03:47:58 +02:00
|
|
|
+ if (this.dropItem && this.world.getGameRules().getBoolean(GameRules.DO_ENTITY_DROPS)) {
|
2019-06-16 15:47:23 +02:00
|
|
|
+ this.a(block);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ this.die();
|
2020-04-08 09:49:15 +02:00
|
|
|
+ return;
|
2019-06-16 15:47:23 +02:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
if (!this.world.isClientSide) {
|
|
|
|
blockposition = new BlockPosition(this);
|
|
|
|
boolean flag = this.block.getBlock() instanceof BlockConcretePowder;
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityTNTPrimed.java b/src/main/java/net/minecraft/server/EntityTNTPrimed.java
|
2020-04-08 09:49:15 +02:00
|
|
|
index d042124362..d9fd4448c7 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityTNTPrimed.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityTNTPrimed.java
|
2020-04-08 09:49:15 +02:00
|
|
|
@@ -54,6 +54,12 @@ public class EntityTNTPrimed extends Entity {
|
2016-06-09 05:57:14 +02:00
|
|
|
}
|
|
|
|
|
2019-04-24 03:00:24 +02:00
|
|
|
this.move(EnumMoveType.SELF, this.getMot());
|
2016-03-01 00:09:49 +01:00
|
|
|
+ // Paper start - Configurable TNT entity height nerf
|
2019-12-12 19:45:00 +01:00
|
|
|
+ if (this.world.paperConfig.entityTNTHeightNerf != 0 && this.locY() > this.world.paperConfig.entityTNTHeightNerf) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ this.die();
|
2020-04-08 09:49:15 +02:00
|
|
|
+ return;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2019-04-24 03:00:24 +02:00
|
|
|
this.setMot(this.getMot().a(0.98D));
|
|
|
|
if (this.onGround) {
|
|
|
|
this.setMot(this.getMot().d(0.7D, -0.5D, 0.7D));
|
2016-03-01 00:09:49 +01:00
|
|
|
--
|
2020-04-02 06:43:11 +02:00
|
|
|
2.25.1
|
2016-03-01 00:09:49 +01:00
|
|
|
|