Posted May 28, 20214 yr The mob is complete and it spawns fine with an egg, but I'm having trouble spawning it in biomes. I've: Registered mob placement in the common startup event with: EntitySpawnPlacementRegistry.register(MY_MOB, EntitySpawnPlacementRegistry.PlacementType.ON_GROUND, Heightmap.Type.MOTION_BLOCKING_NO_LEAVES, MyMobEntity::checkSpawnRules); With the following spawn rules: public static boolean checkSpawnRules(EntityType<? extends AnimalEntity> p_223325_0_, IServerWorld p_223325_1_, SpawnReason p_223325_2_, BlockPos p_223325_3_, Random p_223325_4_) { return p_223325_1_.getDifficulty() != Difficulty.PEACEFUL && MonsterEntity.isDarkEnoughToSpawn(p_223325_1_, p_223325_3_, p_223325_4_) && checkMobSpawnRules(p_223325_0_, p_223325_1_, p_223325_2_, p_223325_3_, p_223325_4_); } And added a method in a BiomeLoadingEvent that adds the spawn whenever an enderman is present in a biome's spawn list: @SubscribeEvent public static void onBiomeLoad(BiomeLoadingEvent event) { MobSpawnInfoBuilder spawns = event.getSpawns(); Set<EntityType<?>> entityTypes = spawns.getEntityTypes(); for (EntityType<?> entityType : entityTypes) { if (entityType == EntityType.ENDERMAN) { int weight = 10; if (event.getCategory() == Biome.Category.NETHER) { weight = 1; } spawns.addSpawn(EntityClassification.CREATURE, new MobSpawnInfo.Spawners(ModEntities.MY_MOB, weight, 1, 4)); break; } } } I expected to see many of my mob roaming around the End. Any help is appreciated. Edited June 1, 20214 yr by urbanxx001
June 1, 20214 yr Set<EntityType<?>> entityTypes = spawns.getEntityTypes(); is returning entities with spawn costs, which only 2 nether biomes have them for enderman. Try something like this: List<Spawners> list = spawns.getSpawner(EntityType.ENDERMAN.getCategory()); for (Spawners entry : list) { if (entry.type == EntityType.ENDERMAN) { int weight = 10; if (event.getCategory() == Biome.Category.NETHER) { weight = 1; } spawns.addSpawn(EntityClassification.CREATURE, new MobSpawnInfo.Spawners(ModEntities.MY_MOB, weight, 1, 4)); break; } }
June 1, 20214 yr Author 22 hours ago, lupicus said: is returning entities with spawn costs, which only 2 nether biomes have them for enderman. Ah ok, thanks. Iterating over spawners vs entity types makes more sense. I've modified the event to mirror mincount, maxcount etc. as well: Spoiler @SubscribeEvent public static void onBiomeLoad(BiomeLoadingEvent event) { EntityType<EndermanEntity> entityToFind = EntityType.ENDERMAN; EntityType<MyEntity> entityToAdd = ModEntities.MY_ENTITY; MobSpawnInfoBuilder spawnInfo = event.getSpawns(); List<MobSpawnInfo.Spawners> spawnersForFind = spawnInfo.getSpawner(entityToFind.getCategory()); MobSpawnInfo.Spawners spawnerToAdd = null; for (MobSpawnInfo.Spawners spawner : spawnersForFind) { if (spawner.type == entityToFind) { spawnerToAdd = new MobSpawnInfo.Spawners(entityToAdd, spawner.weight, spawner.minCount, spawner.maxCount); } } if (spawnerToAdd != null) { List<MobSpawnInfo.Spawners> spawnersForAdd = spawnInfo.getSpawner(entityToAdd.getCategory()); spawnersForAdd.add(spawnerToAdd); } } Although the entity is still refusing to spawn lol. I've debugged the event to see if the custom mob is being added to the spawns, and it is. I've tried registering the spawns outright vs adding on biome load, but it doesn't make a difference. I think the problem lies somewhere in the actual entity class that's preventing it, I'll take a thorough look tomorrow. I appreciate your help. Edited June 1, 20214 yr by urbanxx001
June 1, 20214 yr Your code still using spawnInfo.getEntityTypes() which for enderman is only going to match 2 biomes. It looks like your mob extends an AnimalEntity, which wants to spawn on grass blocks (probably none are in the end), since you use stuff from MonsterEntity, then you could copy their code (adjust as necessary) into your mob: @Override public float getWalkTargetValue(BlockPos pos, IWorldReader world) { return 0.5F - world.getBrightness(pos); }
June 1, 20214 yr Author Adding that did the trick! Thank you so much Edited June 1, 20214 yr by urbanxx001
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.