Jump to content

Cannot resolve symbol 'PlaceEvent' ??????


Minecraft_idk_

Recommended Posts

trying to make a place event, I don't understand why I can get it because I've imported "import net.minecraftforge.event.world.BlockEvent;"

image.png.2f03e3bd84b90ec2f9c518d10608432e.png
 

package com.example.examplemod;

import net.minecraftforge.event.world.BlockEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import java.util.stream.Collectors;

import static net.minecraft.command.arguments.FunctionArgument.function;
import static net.minecraft.entity.EntityType.CREEPER;

// The value here should match an entry in the META-INF/mods.toml file
@Mod("examplemod")
public class ExampleMod
{
    // Directly reference a log4j logger.
    private static final Logger LOGGER = LogManager.getLogger();

    public ExampleMod() {

    }
    @SubscribeEvent
    public void onBlockDropItems(BlockEvent.PlaceEvent event) {
        System.out.println("ok");
    }
}

 

Link to comment
Share on other sites

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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