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

i spawned several mobs in lava, and as they died (i think it was on their death. they explode if they die in fire/lava. it could be from spawning them too), the game crashed. it happened in other cases too though, such as event replacing entity on spawn before i disabled that.

 

https://dl.dropboxusercontent.com/u/62600417/fml-client-latest_201412130310.log

 

note, this doesn't happen in java 7.

What entity are you spawning?

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

  • Author

in this case it was the entity prinny spawned through spawn egg, but when i had the event replacer replace vanilla mobs with custom ones, any one of them would cause that as soon as the world was started if there already were a few replaceable mobs present.

 

most of those custom entities were nearly blank extensions to original mob, only having the main class that would modify their hitbox size.

 

code for the prinny entity:

https://dl.dropboxusercontent.com/u/62600417/Minecraft/etc/ent1.txt

 

code for the blank entity:

https://dl.dropboxusercontent.com/u/62600417/Minecraft/etc/exmob.txt

 

stuff for the event, in preinit:

EntityRegistry.registerModEntity(EntityCMMSpider.class, "Spider", 18, YarrCuteMobModels.instance, 40, 1, true);

 

render, in init:

if (YarrCuteMobModels.SpiderReplaceModel == true)
RenderingRegistry.registerEntityRenderingHandler(EntityCMMSpider.class, new RenderCMMSpiderCMM(new ModelCMMSpider(), 0.3F));

 

and in EntityJoinWorldEvent

				    	if (event.entity.getClass() == net.minecraft.entity.monster.EntitySpider.class)//.getSimpleName() == "EntitySpider")// 
			    	{
			    		EntityCMMSpider spawnEntity = new EntityCMMSpider(event.world);
						Entity entitySrc = event.entity;
				    	spawnEntity.setPosition(event.entity.posX, event.entity.posY, event.entity.posZ);
//				    	spawnEntity.setAngles(event.entity.rotationPitch, event.entity.rotationYaw);
				    	event.world.spawnEntityInWorld(spawnEntity);
						spawnEntity.func_180432_n(entitySrc);
				    	event.entity.setDead();
				    }

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.