In Control!

In Control!

82M Downloads

something wrong that I wrote?

Closed this issue · 4 comments

commented

trying to play a modded game on 1.20.1 without monsters, when I join a world it sends an error message but I have checked multiple times without finding what's wrong (I might just be blind)

inside my spawn.json:

[
{
"mob": ["minecraft:zombie", "minecraft:drowned", "minecraft:skeleton", "minecraft:creeper", "minecraft:slime", "minecraft:allay", "minecraft:spider", "minecraft:cave_spider", "minecraft:enderman", "minecraft:endermite", "minecraft:silverfish", "minecraft:guardian", "minecraft:illusioner", "minecraft:iron_golem", "minecraft:mooshroom", "minecraft:phantom", "minecraft:pillager", "minecraft:ravager", "minecraft:skeleton_horse", "minecraft:zombie_horse", "minecraft:stray", "minecraft:vex", "minecraft:vindicator", "minecraft:warden", "minecraft:witch", "minecraft:zombie_villager"]
"result": "deny"
},
{
"mob": ["alexsmobs:comb_jelly", "alexsmobs:cosmic_cod", "alexsmobs:endergrade", "alexsmobs:flutter", "alexsmobs:laviathan", "alexsmobs:mungus", "alexsmobs:spectre", "alexsmobs:stradpole", "alexsmobs:bunfungus", "alexsmobs:cosmaw", "alexsmobs:underminer", "alexsmobs:warped_toad", "alexsmobs:enderiophage", "alexsmobs:bone_serpent", "alexsmobs:cave_centipede", "alexsmobs:frostwalker", "alexsmobs:skelewag", "alexsmobs:soul_vulture", "alexsmobs:tusklin", "alexsmobs:dropbear", "alexsmobs:farseer", "alexsmobs:guster", "alexsmobs:mimicube", "alexsmobs:murmur", "alexsmobs:rocky_roller", "alexsmobs:skreecher", "alexsmobs:straddler"]
"result": "deny"
},
{
"mob": ["biomesoplenty:glob"]
"result": "deny"
}
]

Image

commented

You are forgetting comma's between different statements.

commented

Where exactly? I can't see it 😭

commented

Euh everywhere basically? For example. you wrote this:

{
"mob": ["biomesoplenty:glob"]
"result": "deny"
}

But that has to be:

{
"mob": ["biomesoplenty:glob"],
"result": "deny"
}

You need to do that everywhere

commented

OH ty