So when I cloned the MinecraftForge project I did all the steps and I then went to setup with eclipse. When I went to File -> import -> General -> existing project into workspace and then got to my repo and projects folder and no projects show. Why?
How do you make a log block in minecraft for minecraft 1.16.1
public static final RegistryObject<Block> MAGENTA_LOG = BLOCKS.register("magenta_log", () -> new ? <- What do i place in there for a new log block ???);
Im Working on my Mod and i want to make a tree generation in 1.16.1. What do you need to put in the tree config to make the tree a feature. I am making a tree using BaseTreeFeatureConfig method to do so.
package com.crayon_duck.betterstuff.world.feature;
import net.minecraft.block.trees.Tree;
import net.minecraft.world.gen.feature.BaseTreeFeatureConfig;
public class MagentaTree extends Tree {
public static final BaseTreeFeatureConfig MAGENTA_TREE_CONFIG = (new BaseTreeFeatureConfig( ));
^
| <- This is where i need the code to go into and config my tree. plz help???
}
What do I put in BaseTreeFeatrueConfig to make a tree or is there another better way of configurating your tree???
How do you add a potion effect in the enchatment code??? I want when ever you have a piece of armor on with the enchatment you would get regeneration. plz help