Posted August 5, 20241 yr Hi all, I am trying to have one of my custom mobs spawn in the nether using a biome modifier JSON file. I have successfully done this for mobs in the overworld for specific biomes, but this doesn't seem to be working in the nether. Is there something additional that needs to be done for spawns to work correctly in the nether? When I use the tag for `#minecraft:is_nether`, I do see some spawns, but they all appear to be basically in the lava. I would like them to spawn on the land in nether wastes just like the vanilla mobs do. Example: { "type": "forge:add_spawns", // Required "biomes":[ "minecraft:nether_wastes" ], // Accepts a biome id, , or #namespace:biome_tag "spawners": { "type": "my_mod:custom_entity", // Type of mob to spawn "weight": 100, // int, spawn weighting "minCount": 1, // int, minimum pack size "maxCount": 4 // int, maximum pack size } } Edited August 5, 20241 yr by Darwinagain Code block
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.