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,

I tried registering my custom dimension but it crashes, I checked different times but couldn't find why.

 

 DimensionMod: 

Spoiler

@ObjectHolder(BinaryMod.MOD_ID)
@Mod.EventBusSubscriber(modid = BinaryMod.MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD)
public class DimensionMod
{
    private final static String DIM_BINARY_ID = "binary_dimension";
    public static final ResourceLocation DIM_BINARY_RL = new ResourceLocation(BinaryMod.MOD_ID, DIM_BINARY_ID);


    // MODDIMENSION REGISTERING
    @ObjectHolder(DIM_BINARY_ID)
    public static final ModDimension DIM_BINARY_MOD = null;

    @SubscribeEvent
    public static void registerModDimensions(final RegistryEvent.Register<ModDimension> event)
    {
        event.getRegistry().register(new ModDimension() {
            @Override
            public BiFunction<World, DimensionType, ? extends Dimension> getFactory()
            {
                return BinaryDimension::new;
            }
        }.setRegistryName(DIM_BINARY_ID));
    }


    // DIMENSION REGISTERING
    @Mod.EventBusSubscriber(modid = BinaryMod.MOD_ID, bus=Mod.EventBusSubscriber.Bus.FORGE)
    private static class ForgeEvents
    {
        @SubscribeEvent
        public static void onRegisterDimensionsEvent(RegisterDimensionsEvent event)
        {
            if(DimensionType.byName(DIM_BINARY_RL) == null)
                DimensionManager.registerDimension(DIM_BINARY_RL, DIM_BINARY_MOD, null, true);
        }
    }
}

 

Crash report:

https://pastebin.com/MsqtmeqS

6 minutes ago, QuantumSoul said:

Hey,

I tried registering my custom dimension but it crashes, I checked different times but couldn't find why.

 

 DimensionMod: 

  Hide contents


@ObjectHolder(BinaryMod.MOD_ID)
@Mod.EventBusSubscriber(modid = BinaryMod.MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD)
public class DimensionMod
{
    private final static String DIM_BINARY_ID = "binary_dimension";
    public static final ResourceLocation DIM_BINARY_RL = new ResourceLocation(BinaryMod.MOD_ID, DIM_BINARY_ID);


    // MODDIMENSION REGISTERING
    @ObjectHolder(DIM_BINARY_ID)
    public static final ModDimension DIM_BINARY_MOD = null;

    @SubscribeEvent
    public static void registerModDimensions(final RegistryEvent.Register<ModDimension> event)
    {
        event.getRegistry().register(new ModDimension() {
            @Override
            public BiFunction<World, DimensionType, ? extends Dimension> getFactory()
            {
                return BinaryDimension::new;
            }
        }.setRegistryName(DIM_BINARY_ID));
    }


    // DIMENSION REGISTERING
    @Mod.EventBusSubscriber(modid = BinaryMod.MOD_ID, bus=Mod.EventBusSubscriber.Bus.FORGE)
    private static class ForgeEvents
    {
        @SubscribeEvent
        public static void onRegisterDimensionsEvent(RegisterDimensionsEvent event)
        {
            if(DimensionType.byName(DIM_BINARY_RL) == null)
                DimensionManager.registerDimension(DIM_BINARY_RL, DIM_BINARY_MOD, null, true);
        }
    }
}

 

Crash report:

https://pastebin.com/MsqtmeqS

Your setRegistryName does not include a namespace.

  • Author
25 minutes ago, kaydogz said:

Your setRegistryName does not include a namespace.

I changed it to

    @SubscribeEvent
    public static void registerModDimensions(final RegistryEvent.Register<ModDimension> event)
    {
        event.getRegistry().register(new ModDimension() {
            @Override
            public BiFunction<World, DimensionType, ? extends Dimension> getFactory()
            {
                return BinaryDimension::new;
            }
        }.setRegistryName(BinaryMod.MOD_ID + ":" + DIM_BINARY_ID));
    }

And It still crashes with the same error.

Your object holder annotation is bad.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

  • Author
4 minutes ago, Draco18s said:

Your object holder annotation is bad.

How ? I tried adding a namespace but it didn't work so I removed it and

I found that it is the top one, the @ObjectHolder at the top which is crashing.

My work around is to do that

Spoiler

    public static final ModDimension DIM_BINARY_MOD = new ModDimension() {
        @Override
        public BiFunction<World, DimensionType, ? extends Dimension> getFactory()
        {
            return BinaryDimension::new;
        }
    };

    // MODDIMENSION REGISTERING
    @SubscribeEvent
    public static void registerModDimensions(final RegistryEvent.Register<ModDimension> event)
    {
        event.getRegistry().register(DIM_BINARY_MOD.setRegistryName(DIM_BINARY_RL));
    }

But I think it's not good

 

Edited by QuantumSoul

16 minutes ago, QuantumSoul said:

I changed it to


    @SubscribeEvent
    public static void registerModDimensions(final RegistryEvent.Register<ModDimension> event)
    {
        event.getRegistry().register(new ModDimension() {
            @Override
            public BiFunction<World, DimensionType, ? extends Dimension> getFactory()
            {
                return BinaryDimension::new;
            }
        }.setRegistryName(BinaryMod.MOD_ID + ":" + DIM_BINARY_ID));
    }

And It still crashes with the same error.

Use your resource location, not a concatenation of strings.

Use a deferred registry, it's designed to get rid of these sorts of headaches.

I'm eager to learn and am prone to mistakes. Don't hesitate to tell me how I can improve.

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.