2024-01-04 21:18:59 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
|
|
|
Date: Sat, 30 Dec 2023 15:00:06 -0500
|
|
|
|
Subject: [PATCH] Properly handle experience dropping on block break
|
|
|
|
|
|
|
|
This causes spawnAfterBreak to spawn xp by default, removing the need to manually add xp wherever this method is used.
|
|
|
|
For classes that use custom xp amounts, they can drop the resources with disabling
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/Level.java b/src/main/java/net/minecraft/world/level/Level.java
|
2024-10-27 18:11:15 +01:00
|
|
|
index 18c011c1943867dbc4abee338b03b9be499876dd..01fbefdbed48ab85481c811cca532c91860626f7 100644
|
2024-01-04 21:18:59 +01:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/Level.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/Level.java
|
2024-10-27 18:11:15 +01:00
|
|
|
@@ -615,7 +615,8 @@ public abstract class Level implements LevelAccessor, AutoCloseable {
|
2024-01-04 21:18:59 +01:00
|
|
|
if (drop) {
|
|
|
|
BlockEntity tileentity = iblockdata.hasBlockEntity() ? this.getBlockEntity(pos) : null;
|
|
|
|
|
|
|
|
- Block.dropResources(iblockdata, this, pos, tileentity, breakingEntity, ItemStack.EMPTY);
|
2024-01-13 16:35:59 +01:00
|
|
|
+ Block.dropResources(iblockdata, this, pos, tileentity, breakingEntity, ItemStack.EMPTY, false); // Paper - Properly handle xp dropping
|
|
|
|
+ iblockdata.getBlock().popExperience((ServerLevel) this, pos, xp, breakingEntity); // Paper - Properly handle xp dropping; custom amount
|
2024-01-04 21:18:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
boolean flag1 = this.setBlock(pos, fluid.createLegacyBlock(), 3, maxUpdateDepth);
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/block/Block.java b/src/main/java/net/minecraft/world/level/block/Block.java
|
2024-10-27 18:11:15 +01:00
|
|
|
index 4ff32e3fb1a1979827ef063cda196a43995440fe..dc242451f397ae6a30b830ef1f211f1a066423a4 100644
|
2024-01-04 21:18:59 +01:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/block/Block.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/block/Block.java
|
2024-10-27 18:11:15 +01:00
|
|
|
@@ -302,23 +302,31 @@ public class Block extends BlockBehaviour implements ItemLike {
|
2024-02-01 10:15:57 +01:00
|
|
|
for (ItemStack drop : Block.getDrops(state, serverLevel, pos, blockEntity)) {
|
2024-01-04 21:18:59 +01:00
|
|
|
items.add(org.bukkit.craftbukkit.inventory.CraftItemStack.asBukkitCopy(drop));
|
|
|
|
}
|
2024-01-13 16:35:59 +01:00
|
|
|
+ Block block = state.getBlock(); // Paper - Properly handle xp dropping
|
2024-02-01 10:15:57 +01:00
|
|
|
io.papermc.paper.event.block.BlockBreakBlockEvent event = new io.papermc.paper.event.block.BlockBreakBlockEvent(org.bukkit.craftbukkit.block.CraftBlock.at(levelAccessor, pos), org.bukkit.craftbukkit.block.CraftBlock.at(levelAccessor, source), items);
|
|
|
|
+ event.setExpToDrop(block.getExpDrop(state, serverLevel, pos, net.minecraft.world.item.ItemStack.EMPTY, true)); // Paper - Properly handle xp dropping
|
2024-01-04 21:18:59 +01:00
|
|
|
event.callEvent();
|
2024-02-01 10:15:57 +01:00
|
|
|
for (org.bukkit.inventory.ItemStack drop : event.getDrops()) {
|
|
|
|
popResource(serverLevel, pos, org.bukkit.craftbukkit.inventory.CraftItemStack.asNMSCopy(drop));
|
2024-01-04 21:18:59 +01:00
|
|
|
}
|
2024-02-01 10:15:57 +01:00
|
|
|
- state.spawnAfterBreak(serverLevel, pos, ItemStack.EMPTY, true);
|
|
|
|
+ state.spawnAfterBreak(serverLevel, pos, ItemStack.EMPTY, false); // Paper - Properly handle xp dropping
|
|
|
|
+ block.popExperience(serverLevel, pos, event.getExpToDrop()); // Paper - Properly handle xp dropping
|
2024-01-04 21:18:59 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2024-01-19 13:22:30 +01:00
|
|
|
// Paper end - Add BlockBreakBlockEvent
|
2024-01-04 21:18:59 +01:00
|
|
|
|
|
|
|
public static void dropResources(BlockState state, Level world, BlockPos pos, @Nullable BlockEntity blockEntity, @Nullable Entity entity, ItemStack tool) {
|
2024-01-13 16:35:59 +01:00
|
|
|
+ // Paper start - Properly handle xp dropping
|
2024-01-04 21:18:59 +01:00
|
|
|
+ dropResources(state, world, pos, blockEntity, entity, tool, true);
|
|
|
|
+ }
|
|
|
|
+ public static void dropResources(BlockState state, Level world, BlockPos pos, @Nullable BlockEntity blockEntity, @Nullable Entity entity, ItemStack tool, boolean dropExperience) {
|
2024-01-13 16:35:59 +01:00
|
|
|
+ // Paper end - Properly handle xp dropping
|
2024-01-04 21:18:59 +01:00
|
|
|
if (world instanceof ServerLevel) {
|
|
|
|
Block.getDrops(state, (ServerLevel) world, pos, blockEntity, entity, tool).forEach((itemstack1) -> {
|
|
|
|
Block.popResource(world, pos, itemstack1);
|
|
|
|
});
|
|
|
|
- state.spawnAfterBreak((ServerLevel) world, pos, tool, true);
|
2024-01-13 16:35:59 +01:00
|
|
|
+ state.spawnAfterBreak((ServerLevel) world, pos, tool, dropExperience); // Paper - Properly handle xp dropping
|
2024-01-04 21:18:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2024-10-27 18:11:15 +01:00
|
|
|
@@ -406,7 +414,7 @@ public class Block extends BlockBehaviour implements ItemLike {
|
2024-01-04 21:18:59 +01:00
|
|
|
player.awardStat(Stats.BLOCK_MINED.get(this));
|
|
|
|
player.causeFoodExhaustion(0.005F, org.bukkit.event.entity.EntityExhaustionEvent.ExhaustionReason.BLOCK_MINED); // CraftBukkit - EntityExhaustionEvent
|
2024-01-14 16:31:39 +01:00
|
|
|
if (includeDrops) { // Paper - fix drops not preventing stats/food exhaustion
|
2024-01-04 21:18:59 +01:00
|
|
|
- Block.dropResources(state, world, pos, blockEntity, player, tool);
|
2024-01-13 16:35:59 +01:00
|
|
|
+ Block.dropResources(state, world, pos, blockEntity, player, tool, dropExp); // Paper - Properly handle xp dropping
|
2024-01-14 16:31:39 +01:00
|
|
|
} // Paper - fix drops not preventing stats/food exhaustion
|
2024-01-04 21:18:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/block/state/BlockBehaviour.java b/src/main/java/net/minecraft/world/level/block/state/BlockBehaviour.java
|
2024-10-24 15:25:36 +02:00
|
|
|
index 0665ca48fe2f8ab1ce1c0306b11be19b06445f74..1b988b92e80faa1ac224caf9f9e955ac43a4c45a 100644
|
2024-01-04 21:18:59 +01:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/block/state/BlockBehaviour.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/block/state/BlockBehaviour.java
|
2024-10-24 15:25:36 +02:00
|
|
|
@@ -1180,6 +1180,7 @@ public abstract class BlockBehaviour implements FeatureElement {
|
2024-01-04 21:18:59 +01:00
|
|
|
|
|
|
|
public void spawnAfterBreak(ServerLevel world, BlockPos pos, ItemStack tool, boolean dropExperience) {
|
|
|
|
this.getBlock().spawnAfterBreak(this.asState(), world, pos, tool, dropExperience);
|
2024-01-13 16:35:59 +01:00
|
|
|
+ if (dropExperience) {getBlock().popExperience(world, pos, this.getBlock().getExpDrop(asState(), world, pos, tool, true));} // Paper - Properly handle xp dropping
|
2024-01-04 21:18:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public List<ItemStack> getDrops(LootParams.Builder builder) {
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java b/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java
|
2024-10-25 13:19:23 +02:00
|
|
|
index 6dceb6082538df6f6147254e861d1cec8af7ec50..5cb69d0b822e11a99a96aef4f59986d083b079f4 100644
|
2024-01-04 21:18:59 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java
|
2024-04-19 22:03:32 +02:00
|
|
|
@@ -509,7 +509,7 @@ public class CraftBlock implements Block {
|
2024-01-04 21:18:59 +01:00
|
|
|
|
|
|
|
// Modelled off EntityHuman#hasBlock
|
|
|
|
if (block != Blocks.AIR && (item == null || !iblockdata.requiresCorrectToolForDrops() || nmsItem.isCorrectToolForDrops(iblockdata))) {
|
|
|
|
- net.minecraft.world.level.block.Block.dropResources(iblockdata, this.world.getMinecraftWorld(), this.position, this.world.getBlockEntity(this.position), null, nmsItem);
|
2024-01-13 16:35:59 +01:00
|
|
|
+ net.minecraft.world.level.block.Block.dropResources(iblockdata, this.world.getMinecraftWorld(), this.position, this.world.getBlockEntity(this.position), null, nmsItem, false); // Paper - Properly handle xp dropping
|
2024-01-04 21:18:59 +01:00
|
|
|
// Paper start - improve Block#breanNaturally
|
|
|
|
if (triggerEffect) {
|
|
|
|
if (iblockdata.getBlock() instanceof net.minecraft.world.level.block.BaseFireBlock) {
|