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

The following is a code snippet that is my attempt to get the list of entities around a spawning entity.  I want to do this to find what animals are nearby, so I can replace the spawning entity with one of that type instead.

Unfortunately as soon as I call it, the world generation stops completely at 16%.

 

public class HandleAnimalSpawns {
    public void handleSpawns(LivingSpawnEvent.CheckSpawn event){
        Entity entity = event.getEntity();
        World world = event.getWorld().getWorld();
    
        List<LivingEntity> entities = WorldHelper.getEntitiesInRange(LivingEntity.class, 10, world, entity.getPosition());          
}


public class WorldHelper {
    public static <T extends LivingEntity> List<T> getEntitiesInRange(Class<? extends T> filterEntity, int range, World world, BlockPos pos)
    {
        AxisAlignedBB axis = new AxisAlignedBB(pos.getX() - range, pos.getY() - range, pos.getZ() - range, pos.getX() + range, pos.getY() + range, pos.getZ() + range);
        List<T> list = world.getEntitiesWithinAABB(filterEntity, axis);
        //This log entry will never get called
        LOGGER.info("Got List");
        return list;
    }
}

  • Author

It's definitely gets called.  I removed them to make my snippet simpler, but I added a bunch of log statements to see where it was stopping, and this statement runs:

AxisAlignedBB axis = new AxisAlignedBB(pos.getX() - range, pos.getY() - range, pos.getZ() - range, pos.getX() + range, pos.getY() + range, pos.getZ() + range);

 

It stops right after that on the 

List<T> list = world.getEntitiesWithinAABB(filterEntity, axis);

 

Here is my event subscriber, but I know it's running:

 

public class EventSubscriber {
    @SubscribeEvent
    public void checkSpawns(LivingSpawnEvent.CheckSpawn event){

        Entity entity = event.getEntity();

        if (event.getWorld().isRemote()) {
            return;
        }

        if (!(entity instanceof LivingEntity)) {
            return;
        }

        if (entity instanceof AnimalEntity){
            HandleAnimalSpawns handler = new HandleAnimalSpawns();
            handler.handleSpawns(event);
        }
    }
}

 

and to complete my example:

 

@Mod(FarmAnimals.MODID)
public class FarmAnimals {
    private static final Logger LOGGER = LogManager.getLogger();

    public static final String MODID = "luminairefarmanimals";

    public FarmAnimals(){
        MinecraftForge.EVENT_BUS.register(new EventSubscriber());

    }
}

Edited by Luminaire

10 hours ago, Luminaire said:

It stops right after that on the 

List<T> list = world.getEntitiesWithinAABB(filterEntity, axis);

I think the problem is that you can not use getEntitiesWithinAABB() while the world is created. If you remove the second getWorld() and use the IWorld instead it will not hang, but you will not find the nearby entities at world gen (but it will work fine after that).

  • Author

Thanks, well that explains why it’s locking. Maybe there is some other way to accomplish what I want. I am trying to make a mod that makes it so farm animals (cows, sheep, pigs, and chickens) will only spawn near villages. 
 

I was worried that if there are other animal mods installed, if I just denied those spawns in the village radius farm animals would be extremely rare, so I was trying to replace any non farm animal spawn near villages with farm animals, even at world creation when larger numbers of passive spawns are created.  The reason for the get in radius was so I could detect animal groups and replace them all with one type of animal. Is there possibly a way to detect when a spawn is part of a group of mobs? Or is there some other way to accomplish the spirit of what I’m trying to do, so that farm animals spawn in a good number near villages?

  • Author

I'll just got with what's suggested, and wait until after world generation to have the spawns replaced.

  • Author

Do you know how I find out if it's during chunk generation?

I tried event.getWorld().chunkExists(), but it always returns true

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.