Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hey there,

Ok I'm posting this here bacause I don't have the knowledge to use github pull req.

 

I'd like to add a CanEntityDestroyBlockEvent that is like an event based version of the block.canEntityDestroy.

Reason for this is that there is currently no good way to e.g. cancel/allow the destruction from the EnderDragon.

 

Here is my example how to implement that:

 

The event itself:

package net.minecraftforge.event.entity;

import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.Entity;
import net.minecraft.util.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.event.world.BlockEvent;

public class CanEntityDestroyBlockEvent extends BlockEvent
{
    public final Entity entity;

    public Result canDestroy = Result.DEFAULT;

    public CanEntityDestroyBlockEvent(World world, BlockPos pos, IBlockState state, Entity entity)
    {
        super(world, pos, state);

        this.entity = entity;
    }
}

 

The additional method for the world class:

    public boolean canEntityDestroyBlock(BlockPos pos, IBlockState state, Entity entity)
    {
        CanEntityDestroyBlockEvent event = new CanEntityDestroyBlockEvent(this, pos, state, entity);
        MinecraftForge.EVENT_BUS.post(event);
        
        switch (event.canDestroy)
        {
            case ALLOW:
                return true;
            case DENY:
                return false;
            default:
                return state.getBlock().canEntityDestroy(this, pos, entity);
        }
    }

 

The method block.canEntityDestroy is only used by EntityDragon and EntityWither so we have to change them too:

 

EntityDragon: method destroyBlocksInAABB and modify line 527 to:

if (worldObj.canEntityDestroyBlock(new BlockPos(k1, l1, i2), this) && this.worldObj.getGameRules().getGameRuleBooleanValue("mobGriefing"))

 

EntityWither: method updateAITasks and modify line 375 to:

if (!block.isAir(worldObj, new BlockPos(j2, k, l)) && worldObj.canEntityDestroyBlock(new BlockPos(j2, k, l), this))

 

Feel free to use and edit my idea or just deny it :)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.