mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-28 16:06:48 +01:00
Merge branch 'pr/6467' into mc1.18/dev
This commit is contained in:
commit
f67341df7e
2 changed files with 26 additions and 15 deletions
|
@ -213,6 +213,10 @@ dependencies {
|
||||||
// runtimeOnly fg.deobf("curse.maven:functional-storage-556861:5271589")
|
// runtimeOnly fg.deobf("curse.maven:functional-storage-556861:5271589")
|
||||||
// runtimeOnly fg.deobf("curse.maven:titanium-287342:5151207")
|
// runtimeOnly fg.deobf("curse.maven:titanium-287342:5151207")
|
||||||
// runtimeOnly fg.deobf("curse.maven:storage-drawers-223852:3807626")
|
// runtimeOnly fg.deobf("curse.maven:storage-drawers-223852:3807626")
|
||||||
|
// implementation fg.deobf("curse.maven:ftb-chunks-forge-314906:4494633")
|
||||||
|
// implementation fg.deobf("curse.maven:architectury-api-419699:4521465")
|
||||||
|
// implementation fg.deobf("curse.maven:ftb-library-forge-404465:4396792")
|
||||||
|
// implementation fg.deobf("curse.maven:ftb-teams-forge-404468:4579981")
|
||||||
|
|
||||||
// https://discord.com/channels/313125603924639766/725850371834118214/910619168821354497
|
// https://discord.com/channels/313125603924639766/725850371834118214/910619168821354497
|
||||||
// Prevent Mixin annotation processor from getting into IntelliJ's annotation processor settings
|
// Prevent Mixin annotation processor from getting into IntelliJ's annotation processor settings
|
||||||
|
|
|
@ -22,6 +22,8 @@ import net.minecraft.world.level.Level;
|
||||||
import net.minecraft.world.level.block.Block;
|
import net.minecraft.world.level.block.Block;
|
||||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||||
import net.minecraft.world.level.block.state.BlockState;
|
import net.minecraft.world.level.block.state.BlockState;
|
||||||
|
import net.minecraftforge.common.MinecraftForge;
|
||||||
|
import net.minecraftforge.event.world.BlockEvent;
|
||||||
|
|
||||||
public interface IWrenchable {
|
public interface IWrenchable {
|
||||||
|
|
||||||
|
@ -55,15 +57,20 @@ public interface IWrenchable {
|
||||||
BlockPos pos = context.getClickedPos();
|
BlockPos pos = context.getClickedPos();
|
||||||
Player player = context.getPlayer();
|
Player player = context.getPlayer();
|
||||||
if (world instanceof ServerLevel) {
|
if (world instanceof ServerLevel) {
|
||||||
if (player != null && !player.isCreative())
|
BlockEvent.BreakEvent event = new BlockEvent.BreakEvent(world, pos, world.getBlockState(pos), player);
|
||||||
|
MinecraftForge.EVENT_BUS.post(event);
|
||||||
|
if (!event.isCanceled()) {
|
||||||
|
if (player != null && !player.isCreative()) {
|
||||||
Block.getDrops(state, (ServerLevel) world, pos, world.getBlockEntity(pos), player, context.getItemInHand())
|
Block.getDrops(state, (ServerLevel) world, pos, world.getBlockEntity(pos), player, context.getItemInHand())
|
||||||
.forEach(itemStack -> {
|
.forEach(itemStack -> {
|
||||||
player.getInventory().placeItemBackInInventory(itemStack);
|
player.getInventory().placeItemBackInInventory(itemStack);
|
||||||
});
|
});
|
||||||
|
}
|
||||||
state.spawnAfterBreak((ServerLevel) world, pos, ItemStack.EMPTY);
|
state.spawnAfterBreak((ServerLevel) world, pos, ItemStack.EMPTY);
|
||||||
world.destroyBlock(pos, false);
|
world.destroyBlock(pos, false);
|
||||||
playRemoveSound(world, pos);
|
playRemoveSound(world, pos);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return InteractionResult.SUCCESS;
|
return InteractionResult.SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue