add mobcaps command patch
This commit is contained in:
parent
9beac6a2a4
commit
7382bd2847
66 changed files with 26 additions and 25 deletions
|
|
@ -0,0 +1,26 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||||
Date: Sun, 31 Oct 2021 14:49:43 -0700
|
||||
Subject: [PATCH] Call onRemove logic for breakNaturally
|
||||
|
||||
|
||||
diff --git a/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java b/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java
|
||||
index 808bdd0e8d6b679c2eee87c3078a4c3dbcd08b8b..2da1609c42bc85f173ed56767933bcafd5f0422e 100644
|
||||
--- a/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java
|
||||
+++ b/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java
|
||||
@@ -516,8 +516,14 @@ public class CraftBlock implements Block {
|
||||
if (triggerEffect) world.levelEvent(org.bukkit.Effect.STEP_SOUND.getId(), position, net.minecraft.world.level.block.Block.getId(block.defaultBlockState())); // Paper
|
||||
result = true;
|
||||
}
|
||||
+ // Paper start
|
||||
+ net.minecraft.world.level.block.state.BlockState newBlockState = Blocks.AIR.defaultBlockState();
|
||||
+ if (this.world instanceof net.minecraft.world.level.Level level) {
|
||||
+ iblockdata.onRemove(level, position, newBlockState, false);
|
||||
+ }
|
||||
+ // Paper end
|
||||
|
||||
- return this.setTypeAndData(Blocks.AIR.defaultBlockState(), true) && result;
|
||||
+ return this.setTypeAndData(newBlockState, true) && result; // Paper
|
||||
}
|
||||
|
||||
@Override
|
||||
Loading…
Add table
Add a link
Reference in a new issue