21 lines
901 B
Plaintext
21 lines
901 B
Plaintext
{
|
|
// ----------------------------------------------------------------------------------------------------------------
|
|
// You Shall Not Spawn by ElocinDev.
|
|
// disabled_entities.json5
|
|
// ----------------------------------------------------------------------------------------------------------------
|
|
//
|
|
// Here you can disable entities from spawning globally, with no exceptions.
|
|
// Format: "modid:entity_name"
|
|
// Example: "minecraft:zombie"
|
|
//
|
|
// Note: As a more advanced method, you can use regex by starting the entry with !
|
|
// Format: "!{Regular expression}"
|
|
// Example: "!minecraft:.*" will disable all entities from minecraft. (NOT RECOMMENDED, JUST AN EXAMPLE)
|
|
//
|
|
"disabled": [
|
|
"caverns_and_chasms:mime",
|
|
"alexsmobs:mimicube"
|
|
],
|
|
// Don't touch this!
|
|
"CONFIG_VERSION": 1
|
|
} |