Darkhax-Minecraft / BadMobs

A very simple minecraft mod which allows users to disable the spawning on any minecraft entity. This will also remove all existing entities of a banned type from that world.
9 stars 10 forks source link

Mobs Still Spawning in Multiplayer Server 1.16.5 #52

Closed ToastlyToasty closed 3 years ago

ToastlyToasty commented 3 years ago

I am trying to prevent vanilla creepers and skeletons from spawning. The mod successfully removes them in singleplayer, but not on my multiplayer server (Apex Hosting). I can edit the same config files that I editted for my singleplayer world, but creepers and skeletons still spawn. Am I missing something? Code:

Options for the minecraft mod.

[minecraft]

#Spawning options for minecraft:area_effect_cloud
[minecraft.area_effect_cloud]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:armor_stand
[minecraft.armor_stand]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:arrow
[minecraft.arrow]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:bat
[minecraft.bat]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:bee
[minecraft.bee]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:blaze
[minecraft.blaze]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:boat
[minecraft.boat]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:cat
[minecraft.cat]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:cave_spider
[minecraft.cave_spider]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:chicken
[minecraft.chicken]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:cod
[minecraft.cod]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:cow
[minecraft.cow]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:creeper
[minecraft.creeper]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = false
    #Should spawners be able to spawn the entity?
    allowSpawners = false
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = false
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = true

#Spawning options for minecraft:dolphin
[minecraft.dolphin]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:donkey
[minecraft.donkey]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:dragon_fireball
[minecraft.dragon_fireball]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:drowned
[minecraft.drowned]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:elder_guardian
[minecraft.elder_guardian]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:end_crystal
[minecraft.end_crystal]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:ender_dragon
[minecraft.ender_dragon]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:enderman
[minecraft.enderman]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:endermite
[minecraft.endermite]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:evoker
[minecraft.evoker]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:evoker_fangs
[minecraft.evoker_fangs]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:experience_orb
[minecraft.experience_orb]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:eye_of_ender
[minecraft.eye_of_ender]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:falling_block
[minecraft.falling_block]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:firework_rocket
[minecraft.firework_rocket]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:fox
[minecraft.fox]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:ghast
[minecraft.ghast]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:giant
[minecraft.giant]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:guardian
[minecraft.guardian]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:hoglin
[minecraft.hoglin]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:horse
[minecraft.horse]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:husk
[minecraft.husk]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:illusioner
[minecraft.illusioner]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:iron_golem
[minecraft.iron_golem]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:item
[minecraft.item]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:item_frame
[minecraft.item_frame]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:fireball
[minecraft.fireball]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:leash_knot
[minecraft.leash_knot]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:lightning_bolt
[minecraft.lightning_bolt]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:llama
[minecraft.llama]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:llama_spit
[minecraft.llama_spit]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:magma_cube
[minecraft.magma_cube]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:minecart
[minecraft.minecart]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:chest_minecart
[minecraft.chest_minecart]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:command_block_minecart
[minecraft.command_block_minecart]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:furnace_minecart
[minecraft.furnace_minecart]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:hopper_minecart
[minecraft.hopper_minecart]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:spawner_minecart
[minecraft.spawner_minecart]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:tnt_minecart
[minecraft.tnt_minecart]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:mule
[minecraft.mule]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:mooshroom
[minecraft.mooshroom]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:ocelot
[minecraft.ocelot]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:painting
[minecraft.painting]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:panda
[minecraft.panda]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:parrot
[minecraft.parrot]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:phantom
[minecraft.phantom]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:pig
[minecraft.pig]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:piglin
[minecraft.piglin]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:piglin_brute
[minecraft.piglin_brute]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:pillager
[minecraft.pillager]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:polar_bear
[minecraft.polar_bear]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:tnt
[minecraft.tnt]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:pufferfish
[minecraft.pufferfish]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:rabbit
[minecraft.rabbit]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:ravager
[minecraft.ravager]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:salmon
[minecraft.salmon]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:sheep
[minecraft.sheep]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:shulker
[minecraft.shulker]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:shulker_bullet
[minecraft.shulker_bullet]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:silverfish
[minecraft.silverfish]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:skeleton
[minecraft.skeleton]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = false
    #Should spawners be able to spawn the entity?
    allowSpawners = false
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = false
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = true

#Spawning options for minecraft:skeleton_horse
[minecraft.skeleton_horse]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:slime
[minecraft.slime]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:small_fireball
[minecraft.small_fireball]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:snow_golem
[minecraft.snow_golem]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:snowball
[minecraft.snowball]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:spectral_arrow
[minecraft.spectral_arrow]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:spider
[minecraft.spider]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:squid
[minecraft.squid]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:stray
[minecraft.stray]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:strider
[minecraft.strider]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:egg
[minecraft.egg]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:ender_pearl
[minecraft.ender_pearl]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:experience_bottle
[minecraft.experience_bottle]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:potion
[minecraft.potion]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:trident
[minecraft.trident]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:trader_llama
[minecraft.trader_llama]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:tropical_fish
[minecraft.tropical_fish]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:turtle
[minecraft.turtle]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:vex
[minecraft.vex]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:villager
[minecraft.villager]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:vindicator
[minecraft.vindicator]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:wandering_trader
[minecraft.wandering_trader]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:witch
[minecraft.witch]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:wither
[minecraft.wither]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:wither_skeleton
[minecraft.wither_skeleton]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:wither_skull
[minecraft.wither_skull]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:wolf
[minecraft.wolf]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:zoglin
[minecraft.zoglin]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:zombie
[minecraft.zombie]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:zombie_horse
[minecraft.zombie_horse]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:zombie_villager
[minecraft.zombie_villager]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:zombified_piglin
[minecraft.zombified_piglin]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:player
[minecraft.player]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for minecraft:fishing_bobber
[minecraft.fishing_bobber]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

Options for the ascpm mod.

[ascpm]

#Spawning options for ascpm:scp_173
[ascpm.scp_173]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:uscp_173
[ascpm.uscp_173]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:fmscp_173
[ascpm.fmscp_173]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:pscp_173
[ascpm.pscp_173]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:dosscp_173
[ascpm.dosscp_173]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_173_bcg
[ascpm.scp_173_bcg]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:cbscp_939
[ascpm.cbscp_939]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_939
[ascpm.scp_939]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_939_chase_1
[ascpm.scp_939_chase_1]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_939_red
[ascpm.scp_939_red]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_939_red_chase
[ascpm.scp_939_red_chase]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_939_pink
[ascpm.scp_939_pink]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_939_pink_chase
[ascpm.scp_939_pink_chase]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_939_green
[ascpm.scp_939_green]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_939_green_chase
[ascpm.scp_939_green_chase]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_939_blue
[ascpm.scp_939_blue]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_939_blue_chase
[ascpm.scp_939_blue_chase]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_049
[ascpm.scp_049]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_049_u
[ascpm.scp_049_u]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_106
[ascpm.scp_106]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:uscp_106
[ascpm.uscp_106]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_745
[ascpm.scp_745]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_066
[ascpm.scp_066]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_2845
[ascpm.scp_2845]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_457_small
[ascpm.scp_457_small]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_058
[ascpm.scp_058]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_082_passive_a
[ascpm.scp_082_passive_a]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_191
[ascpm.scp_191]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_5167
[ascpm.scp_5167]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_3456
[ascpm.scp_3456]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_682
[ascpm.scp_682]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_999
[ascpm.scp_999]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_999_c
[ascpm.scp_999_c]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_4975
[ascpm.scp_4975]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_073
[ascpm.scp_073]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_076
[ascpm.scp_076]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_772
[ascpm.scp_772]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_835_jp
[ascpm.scp_835_jp]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_075
[ascpm.scp_075]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_025_fr
[ascpm.scp_025_fr]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_029
[ascpm.scp_029]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_1529
[ascpm.scp_1529]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_1145
[ascpm.scp_1145]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_2761
[ascpm.scp_2761]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_2490
[ascpm.scp_2490]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_3199
[ascpm.scp_3199]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_650_a
[ascpm.scp_650_a]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_017
[ascpm.scp_017]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_080
[ascpm.scp_080]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_575
[ascpm.scp_575]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_280
[ascpm.scp_280]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_096
[ascpm.scp_096]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_096_screaming
[ascpm.scp_096_screaming]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_096_running
[ascpm.scp_096_running]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_096_sitting
[ascpm.scp_096_sitting]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:paperdragon
[ascpm.paperdragon]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:paperdragon_2
[ascpm.paperdragon_2]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:paperdragon_3
[ascpm.paperdragon_3]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:paperdragon_4
[ascpm.paperdragon_4]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:paperdragon_5
[ascpm.paperdragon_5]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:paperdragon_6
[ascpm.paperdragon_6]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:paperdragon_7
[ascpm.paperdragon_7]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:paperdragon_8
[ascpm.paperdragon_8]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:mecha_scp_2761
[ascpm.mecha_scp_2761]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:uscp_173pose_1
[ascpm.uscp_173pose_1]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_457
[ascpm.scp_457]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_082_passive_b
[ascpm.scp_082_passive_b]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_082_passive_c
[ascpm.scp_082_passive_c]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_082_passive_d
[ascpm.scp_082_passive_d]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_082_passive_e
[ascpm.scp_082_passive_e]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_049_curing
[ascpm.scp_049_curing]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_049_agressive
[ascpm.scp_049_agressive]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_049_u_agressive
[ascpm.scp_049_u_agressive]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_049_u_curing
[ascpm.scp_049_u_curing]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:uscp_173pose_2
[ascpm.uscp_173pose_2]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:uscp_173pose_3
[ascpm.uscp_173pose_3]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:uscp_173pose_4
[ascpm.uscp_173pose_4]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_745_a
[ascpm.scp_745_a]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_745_b
[ascpm.scp_745_b]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_745_c
[ascpm.scp_745_c]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_2761_sleep
[ascpm.scp_2761_sleep]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_096_m
[ascpm.scp_096_m]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_096_screaming_m
[ascpm.scp_096_screaming_m]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_096_running_m
[ascpm.scp_096_running_m]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_096_sitting_m
[ascpm.scp_096_sitting_m]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_4271
[ascpm.scp_4271]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_058_minivan
[ascpm.scp_058_minivan]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_5131
[ascpm.scp_5131]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:bingus
[ascpm.bingus]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_066cat
[ascpm.scp_066cat]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_2845_sitting
[ascpm.scp_2845_sitting]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:transmutation_sphere
[ascpm.transmutation_sphere]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_457_soul
[ascpm.scp_457_soul]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_058_defeated
[ascpm.scp_058_defeated]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_082_agressive_a
[ascpm.scp_082_agressive_a]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_082_agressive_b
[ascpm.scp_082_agressive_b]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_082_agressive_c
[ascpm.scp_082_agressive_c]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_082_agressive_d
[ascpm.scp_082_agressive_d]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_082_agressive_e
[ascpm.scp_082_agressive_e]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_191_sit
[ascpm.scp_191_sit]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_191_idle_sit
[ascpm.scp_191_idle_sit]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_5167_a
[ascpm.scp_5167_a]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_682_dead
[ascpm.scp_682_dead]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_4975_copy
[ascpm.scp_4975_copy]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_076_berserk_mode
[ascpm.scp_076_berserk_mode]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:office_chair_entity
[ascpm.office_chair_entity]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:lego_men_entity
[ascpm.lego_men_entity]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:lego_car_entity
[ascpm.lego_car_entity]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:eggs_772
[ascpm.eggs_772]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:sons_of_shadows
[ascpm.sons_of_shadows]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_3199egg
[ascpm.scp_3199egg]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_650_b
[ascpm.scp_650_b]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_650_c
[ascpm.scp_650_c]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_650_d
[ascpm.scp_650_d]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_650_e
[ascpm.scp_650_e]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_650_f
[ascpm.scp_650_f]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_650_g
[ascpm.scp_650_g]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_280_retreating
[ascpm.scp_280_retreating]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_7431
[ascpm.scp_7431]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_7432
[ascpm.scp_7432]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_7433
[ascpm.scp_7433]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_7434
[ascpm.scp_7434]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:tendraw_035
[ascpm.tendraw_035]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_1499_deviant_a
[ascpm.scp_1499_deviant_a]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_1499_deviant_b
[ascpm.scp_1499_deviant_b]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_058_minivan_defeated
[ascpm.scp_058_minivan_defeated]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:entitybulletscp_058_stinger
[ascpm.entitybulletscp_058_stinger]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:entitybulletscp_457_flamethrower
[ascpm.entitybulletscp_457_flamethrower]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:entitybulletscp_457_soul_flamethrower
[ascpm.entitybulletscp_457_soul_flamethrower]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_1145_passive
[ascpm.scp_1145_passive]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_2490_a
[ascpm.scp_2490_a]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:scp_2490_b
[ascpm.scp_2490_b]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:stalker_1
[ascpm.stalker_1]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:stalker_2
[ascpm.stalker_2]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:stalker_3
[ascpm.stalker_3]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:entitybulletrocket_laucher
[ascpm.entitybulletrocket_laucher]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:entitybulletacid_laucher
[ascpm.entitybulletacid_laucher]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for ascpm:entitybulletscp_682_acid
[ascpm.entitybulletscp_682_acid]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

Options for the mutantbeasts mod.

[mutantbeasts]

#Spawning options for mutantbeasts:mutant_snow_golem
[mutantbeasts.mutant_snow_golem]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:mutant_enderman
[mutantbeasts.mutant_enderman]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:mutant_skeleton
[mutantbeasts.mutant_skeleton]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:spider_pig
[mutantbeasts.spider_pig]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:mutant_creeper
[mutantbeasts.mutant_creeper]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:creeper_minion
[mutantbeasts.creeper_minion]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:mutant_zombie
[mutantbeasts.mutant_zombie]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:body_part
[mutantbeasts.body_part]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:chemical_x
[mutantbeasts.chemical_x]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:creeper_minion_egg
[mutantbeasts.creeper_minion_egg]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:endersoul_clone
[mutantbeasts.endersoul_clone]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:endersoul_fragment
[mutantbeasts.endersoul_fragment]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:mutant_arrow
[mutantbeasts.mutant_arrow]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:skull_spirit
[mutantbeasts.skull_spirit]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for mutantbeasts:throwable_block
[mutantbeasts.throwable_block]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

Options for the vampirism mod.

[vampirism]

#Spawning options for vampirism:advanced_hunter
[vampirism.advanced_hunter]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:advanced_hunter_imob
[vampirism.advanced_hunter_imob]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:advanced_vampire
[vampirism.advanced_vampire]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:advanced_vampire_imob
[vampirism.advanced_vampire_imob]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:blinding_bat
[vampirism.blinding_bat]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:converted_creature
[vampirism.converted_creature]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:converted_creature_imob
[vampirism.converted_creature_imob]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:converted_sheep
[vampirism.converted_sheep]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:crossbow_arrow
[vampirism.crossbow_arrow]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:dark_blood_projectile
[vampirism.dark_blood_projectile]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:dummy_creature
[vampirism.dummy_creature]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:hunter_trainer
[vampirism.hunter_trainer]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:hunter_trainer_dummy
[vampirism.hunter_trainer_dummy]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:particle_cloud
[vampirism.particle_cloud]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:soul_orb
[vampirism.soul_orb]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:throwable_item
[vampirism.throwable_item]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:vampire
[vampirism.vampire]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:vampire_imob
[vampirism.vampire_imob]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:vampire_baron
[vampirism.vampire_baron]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:hunter
[vampirism.hunter]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:hunter_imob
[vampirism.hunter_imob]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:villager_angry
[vampirism.villager_angry]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:villager_converted
[vampirism.villager_converted]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:converted_horse
[vampirism.converted_horse]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:vampire_minion
[vampirism.vampire_minion]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:hunter_minion
[vampirism.hunter_minion]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:task_master_vampire
[vampirism.task_master_vampire]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for vampirism:task_master_hunter
[vampirism.task_master_hunter]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

Options for the werewolves mod.

[werewolves]

#Spawning options for werewolves:werewolf_beast
[werewolves.werewolf_beast]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for werewolves:werewolf_survivalist
[werewolves.werewolf_survivalist]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for werewolves:human_werewolf
[werewolves.human_werewolf]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for werewolves:wolf
[werewolves.wolf]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

#Spawning options for werewolves:task_master_werewolf
[werewolves.task_master_werewolf]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false

Options for the corpse mod.

[corpse]

#Spawning options for corpse:corpse
[corpse.corpse]
    #Should the entity be allowed to spawn normally?
    allowNormalSpawning = true
    #Should spawners be able to spawn the entity?
    allowSpawners = true
    #Should spawn eggs be able to spawn the entity?
    allowSpawnEggs = true
    #When enabled the entity type will be aggresively removed from worlds. This will bypass all other options.
    removeAggressively = false
Darkhax commented 3 years ago

The mod is 100% confirmed to be working as intended in a server environment. Make sure you have installed Forge, and Bad Mobs on the server and have also included your config changes there. The server also needs a hard restart to load changes to the config file.