2019-10-27 00:55:58 +02:00
|
|
|
From 27fb70c36afb3d6838aaeb9d22dc04797b2ec7ef 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
|
2019-10-27 00:55:58 +02:00
|
|
|
index 625e75f93..17ee44ae5 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
|
2019-10-27 00:55:58 +02:00
|
|
|
index fd4712c71..40dcb3125 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
|
2019-07-17 00:09:32 +02:00
|
|
|
@@ -1838,6 +1838,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
|
2019-10-27 00:55:58 +02:00
|
|
|
index dff903b6a..f8d8d8f35 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
|
2019-06-16 15:47:23 +02:00
|
|
|
@@ -88,6 +88,16 @@ public class EntityFallingBlock extends Entity {
|
|
|
|
}
|
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
|
|
|
|
+ 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();
|
|
|
|
+ }
|
|
|
|
+ // 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
|
2019-07-17 00:09:32 +02:00
|
|
|
index 775192a59..e988abd67 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
|
2019-04-24 03:00:24 +02:00
|
|
|
@@ -57,6 +57,11 @@ 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
|
|
|
|
+ if (this.world.paperConfig.entityTNTHeightNerf != 0 && this.locY > this.world.paperConfig.entityTNTHeightNerf) {
|
|
|
|
+ this.die();
|
|
|
|
+ }
|
|
|
|
+ // 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
|
|
|
--
|
2019-10-27 00:55:58 +02:00
|
|
|
2.23.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|