Modrinth
This mod allows you to block the spawning of specific entities (mobs) in a Minecraft world π based on a list of entities defined in a configuration file π. You can customize the list of mobs you want to prevent from spawning by editing a text file named `mobs.oas`.
βοΈ Configuration Steps:
1. π Create the `mobs.oas` file:
- The configuration file is generated in the following directory:
config/oas_work/mobs.oas
- If the file does not exist, it is automatically created when the mod runs for the first time.
2. βοΈ Content of the `mobs.oas` file:
- The `mobs.oas` file contains a list of full entity names from Minecraft (e.g., `minecraft:sheep`, `minecraft:creeper`), each name on a new line.
- Example content of the file:
minecraft:sheep
minecraft:creeper
minecraft:zombie
3. π« Blocking entities:
- The mod will read each line of the `mobs.oas` file and block the spawning of all entities listed in this file.
- If an entity matches one of the lines, its spawn event will be automatically canceled β.
4. π Compatibility with all mods:
- This mod is fully compatible with other mods that add new entities to Minecraft π§©.
- You can also add modded entities to the `mobs.oas` file using their full entity names, such as `modname:custom_entity`.
π οΈ Usage:
1. π Add the entities you wish to block to the `mobs.oas` file.
2. π₯οΈ Launch the game or restart the Minecraft server. The mod will prevent these entities from spawning in the world, including entities added by other mods.~~~~