Custom Portal Lighter #1921
Unanswered
JCS-Mecabricks
asked this question in
Support
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was able to make a custom portal to travel to my custom dimension, but I can't get to the dimension except through the portal block itself. I tried to make an item to light the portal, but it doesn't seem to light it.
package github.jcsmecabricks.redwoodvariants.item.custom;
import github.jcsmecabricks.redwoodvariants.block.ModBlocks;
import github.jcsmecabricks.redwoodvariants.block.custom.ModPortalBlock;
import net.minecraft.core.BlockPos;
import net.minecraft.sounds.SoundEvents;
import net.minecraft.sounds.SoundSource;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.Item;
import net.minecraft.world.item.context.UseOnContext;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.state.BlockState;
public class ResourceRealmItem extends Item {
public ResourceRealmItem(Properties properties) {
super(properties);
}
}
Beta Was this translation helpful? Give feedback.
All reactions