Guard against chunk protections

This commit is contained in:
attackeight 2024-05-07 20:25:30 -04:00
parent d66170c8fe
commit e9a17eb2f8
2 changed files with 6 additions and 1 deletions

View file

@ -206,6 +206,10 @@ dependencies {
// runtimeOnly fg.deobf("maven.modrinth:spark:1.10.38-forge")
//runtimeOnly fg.deobf("curse.maven:forbidden-arcanus-309858:4729924")
//runtimeOnly fg.deobf("curse.maven:valhelsia-core-416935:3886212")
// 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
// Prevent Mixin annotation processor from getting into IntelliJ's annotation processor settings

View file

@ -55,13 +55,14 @@ public interface IWrenchable {
BlockPos pos = context.getClickedPos();
Player player = context.getPlayer();
if (world instanceof ServerLevel) {
if (!world.destroyBlock(pos, false))
return InteractionResult.PASS;
if (player != null && !player.isCreative())
Block.getDrops(state, (ServerLevel) world, pos, world.getBlockEntity(pos), player, context.getItemInHand())
.forEach(itemStack -> {
player.getInventory().placeItemBackInInventory(itemStack);
});
state.spawnAfterBreak((ServerLevel) world, pos, ItemStack.EMPTY);
world.destroyBlock(pos, false);
playRemoveSound(world, pos);
}
return InteractionResult.SUCCESS;