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

Hello,

 

in what case should you register an entity or rather, what exactly does registering change ?
I have been using my entity without registering it just fine, the only thing that changed after registering it, is that there's now a spawn egg for it.
I do not want it to have a spawn egg however, so should I just not register it ?

Thank you!
 

  • Author

Well I have already changed my Code so it is registered.
This is the Code in my Main Mod Class

Spoiler

@Mod.EventHandler
	public void preInit(FMLPreInitializationEvent event) {
		System.out.println(NAME + " pre-initialization");
		proxy.registerEntityRenderer();
		InitEntities.registerEntities();
		MinecraftForge.EVENT_BUS.register(new EventHandler());
		PacketHandler.registerMessages(MODID);
		NetworkRegistry.INSTANCE.registerGuiHandler(this, new GuiHandler());
	}

 

and this is the InitEntities Class

Spoiler

public class InitEntities {
	
	
	public static void registerEntities(){
		registerEntity("asteroid",EntityAsteroid.class,20,50,39423,39423);
	}
	
	private static void registerEntity(String name,Class<? extends Entity> entity, int id, int range, int color1, int color2) {
		EntityRegistry.registerModEntity(new ResourceLocation(LEER.MODID+":"+name),entity,name,id,LEER.instance,range,1,true,color1,color2);
		
	}
}

 

However if you say it doesn't work when I'm not registering it I'll leave my code as it is right now.
How would I then go about deleting the spawn egg (my entity is not a living entity)?

 

Thank you for your answer.

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.