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.~~~~