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.

[SOLVED][1.14.4] Spawning mob with modified data manager data (eg. slime size)

Featured Replies

Posted

I'm currently updating/rewriting/experimenting with  my mod for 1.14.4 and have been running into a confusing issue with spawning.

I can happily spawn mobs and kill them, except for when I need to modify the entity.

 

The best example is that I need to spawn and kill small slimes.

 

I have an access transformer for setSlimeSize that is working fine.

I then use setSlimeSize to set a size of 1 - small.

But when I get the LivingDropEvent ~50% of the time the size is back to 2 - large.

 

I've been dumping the UUID for the entity at creation time and drop event time, to make sure I'm actually seeing the same entity and they look fine.

 

To create the entity I've been basing it off the AbstractSpawner.java vanilla code, then I set the slime size

public net.minecraft.entity.monster.SlimeEntity func_70799_a(IZ)V # setSlimeSize

    Entity entity = EntityType.func_220335_a(.....
    ....
    MobEntity mobEntity = (MobEntity)entity;
    ....
	SlimeEntity slimeEntity = (SlimeEntity)mobEntity;
        if (fakeMob.isSmallSlime()) {
            slimeEntity.setSlimeSize(1, false);
        } else {
            slimeEntity.setSlimeSize(2, false);
        }

	...
	mobEntity.onInitialSpawn(world,
                world.getDifficultyForLocation(new BlockPos(entity)),
                SpawnReason.SPAWNER,
                null, null);
	...
	mobEntity.onDeath(DamageSource.causePlayerDamage(fakePlayer));

 

I don't know if I'm missing some extra step after calling setSlimeSize to sync the change before it gets spawned.

Looking at SlimeEntity,java I'm not seeing anything jump out.

 

Any suggestions as to what I could be missing out here?

 

eg

The "set size to small 1" debug is from " LOGGER.debug("SlimeSpawner: set size to small {}", slimeEntity.getSlimeSize());"

Good spawn

18:34:48] [Server thread/INFO] [ip.wo.Woot/]: Spawning and killing minecraft:slime,small@1 ipsis.woot.simulation.dimension.TartarusDimension@a4cf04a
[18:34:48] [Server thread/DEBUG] [ip.wo.Woot/]: SlimeSpawner: set size to small 1
[18:34:48] [Server thread/DEBUG] [ip.wo.Woot/]: SpawnController:spawnKill minecraft:slime,small@1 1858da71-6e5c-48ce-9615-3bbbf501abb6
[18:34:48] [Server thread/INFO] [ip.wo.Woot/]: onLivingDropsEvent fake kill minecraft:slime,small@1 1858da71-6e5c-48ce-9615-3bbbf501abb6 [ItemEntity['Slimeball'/324, l='Single Factory', x=4.00, y=20.00, z=4.00]]

 

Bad spawn

[18:34:48] [Server thread/INFO] [ip.wo.Woot/]: Spawning and killing minecraft:slime,small@3 ipsis.woot.simulation.dimension.TartarusDimension@a4cf04a
[18:34:48] [Server thread/DEBUG] [ip.wo.Woot/]: SlimeSpawner: set size to small 1
[18:34:48] [Server thread/DEBUG] [ip.wo.Woot/]: SpawnController:spawnKill minecraft:slime,small@3 b5a5a679-6972-48b9-b93d-2826c37801c5
[18:34:48] [Server thread/INFO] [ip.wo.Woot/]: onLivingDropsEvent fake kill minecraft:slime,large@3 b5a5a679-6972-48b9-b93d-2826c37801c5 []
[18:34:48] [Server thread/ERROR] [ip.wo.Woot/]: onLivingDropEvent: Large slime found SlimeEntity['Slime'/320, l='Single Factory', x=4.00, y=52.00, z=4.00] FakePlayer['[woot_3]'/125, l='Single Factory', x=0.50, y=5.00, z=-47.50] size 2

 

Edited by Ipsissimus418

  • Author

Cannot believe it was that simple.

Shifting the setSlimeSize to after the onInitialSpawn fixed the issue and now the slimes spawn with the correct sizes.

Now to go back and remove all the debug.

 

Thanks diesieben07.

Edited by Ipsissimus418

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.