
Stop mobs from spawning with a simple config file.
Stop mobs from spawning with a simple config file.
Currently only supports NeoForge 1.21.1
Yeah! This was made with the intention of aiding modpack creators.
This mod works all on the server side! Though players without the mod will not see the "This mob has been disabled!" message on their action bar.
You can simply stop a mob from spawning by adding it to the list in config\moberradicator.json5
Example
{
blocked_mobs: [
"minecraft:zombie"
]
}
{
blocked_mobs: [
"!minecraft:zombie_.*"
]
}
! before the mob you want to remove will enable the use of regex in that string. Adding .* will determine what section of the expression must match to stop a mob from spawning, this one for example will stop both zombie villagers and zombie horses from spawning!Shoutouts to ElocinDev!! They made Item Obliterator and their mod was generally a big inspo for this haha