2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: GioSDA <gsdambrosio@gmail.com>
|
|
|
|
Date: Wed, 10 Mar 2021 10:06:45 -0800
|
|
|
|
Subject: [PATCH] Add option to fix items merging through walls
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-06-18 07:51:04 +02:00
|
|
|
index 05c1aa7c49134e099e3d14a244252173e6755401..258d54e450ff5aec06eaeb1d57c049d9b0b3ea48 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-06-17 10:37:27 +02:00
|
|
|
@@ -797,5 +797,10 @@ public class PaperWorldConfig {
|
2021-06-11 14:02:28 +02:00
|
|
|
private void mapItemFrameCursorLimit() {
|
|
|
|
mapItemFrameCursorLimit = getInt("map-item-frame-cursor-limit", mapItemFrameCursorLimit);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean fixItemsMergingThroughWalls;
|
|
|
|
+ private void fixItemsMergingThroughWalls() {
|
|
|
|
+ fixItemsMergingThroughWalls = getBoolean("fix-items-merging-through-walls", fixItemsMergingThroughWalls);
|
|
|
|
+ }
|
|
|
|
}
|
2021-06-15 05:50:26 +02:00
|
|
|
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/item/ItemEntity.java b/src/main/java/net/minecraft/world/entity/item/ItemEntity.java
|
2021-06-15 05:50:26 +02:00
|
|
|
index e0c13a112c95eed9867d4608e18dc797b0c9c9cf..158719d46c96bb733a00e08c8285f41a48406abf 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/item/ItemEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/item/ItemEntity.java
|
2021-06-15 05:50:26 +02:00
|
|
|
@@ -241,6 +241,14 @@ public class ItemEntity extends Entity {
|
2021-06-11 14:02:28 +02:00
|
|
|
ItemEntity entityitem = (ItemEntity) iterator.next();
|
|
|
|
|
|
|
|
if (entityitem.isMergable()) {
|
|
|
|
+ // Paper Start - Fix items merging through walls
|
|
|
|
+ if (this.level.paperConfig.fixItemsMergingThroughWalls) {
|
|
|
|
+ net.minecraft.world.level.ClipContext rayTrace = new net.minecraft.world.level.ClipContext(this.position(), entityitem.position(),
|
|
|
|
+ net.minecraft.world.level.ClipContext.Block.COLLIDER, net.minecraft.world.level.ClipContext.Fluid.NONE, this);
|
|
|
|
+ net.minecraft.world.phys.BlockHitResult rayTraceResult = level.clip(rayTrace);
|
|
|
|
+ if (rayTraceResult.getType() == net.minecraft.world.phys.HitResult.Type.BLOCK) continue;
|
|
|
|
+ }
|
|
|
|
+ // Paper End
|
|
|
|
this.tryToMerge(entityitem);
|
2021-06-15 05:50:26 +02:00
|
|
|
if (this.isRemoved()) {
|
2021-06-11 14:02:28 +02:00
|
|
|
break;
|