Posted March 31, 20232 yr So i have spent multiple hours trying to get an event to work but after solving most issues this one still remains. error: incompatible types: BlockInteraction cannot be converted to ExplosionInteraction Explosion explode = player.level.explode(player, player.getX(), player.getY(), player.getZ(), 4.0F, explosion$blockinteraction); And this is my code is: public void OnPlayerJump(LivingEvent.LivingJumpEvent event) { if(event.getEntity() instanceof Player player) { Random rand = new Random(); int chance = rand.nextInt(5); if(chance == 1) { player.sendSystemMessage(Component.literal(player.getName().getString() + "Triggered an event")); if (!player.level.isClientSide) { Explosion.BlockInteraction explosion$blockinteraction = net.minecraftforge.event.ForgeEventFactory.getMobGriefingEvent(player.level, player) ? Explosion.BlockInteraction.DESTROY : Explosion.BlockInteraction.DESTROY; player.level.explode(player, player.getX(), player.getY(), player.getZ(), 4.0F, explosion$blockinteraction); } } } } }
March 31, 20232 yr Quote error: incompatible types: BlockInteraction cannot be converted to ExplosionInteraction The parameter you are passing is the wrong type. You can't post compiler errors here. This is a support forum not a teaching forum and especially not a teaching java forum. Boilerplate: If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one. If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install Large files should be posted to a file sharing site like https://gist.github.com You should also read the support forum sticky post.
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.