Closed AngleNaris closed 7 months ago
Spawn.json
[
{
"hostile": true,
"area": "spawn",
"result": "deny"
},
{
"dimension": "minecraft:overworld",
"mob": "minecraft:skeleton",
"mincount": 10,
"result": "deny"
},
{
"dimension": "minecraft:the_nether",
"incontrol": true,
"mincount": 50,
"result": "deny"
},
{
"dimension": "minecraft:the_nether",
"mob":"minecraft:zombified_piglin",
"mincount": 40,
"result": "deny"
},
{
"dimension": "minecraft:overworld",
"mod": ["creeperoverhaul","minecraft:creeper"],
"mincount": 20,
"result": "deny"
},
{
"dimension": "minecraft:overworld",
"mob": "minecraft:spider",
"mincount": 10,
"result": "deny"
},
{
"mob": "spore:hindenburg",
"when": "onjoin",
"result": "deny"
},
{
"mob": "spore:proto",
"when": "onjoin",
"result": "deny"
},
{
"mob": ["minecraft:zombie","spore:inf_human","minecraft:spider","minecraft:skeleton","minecraft:creeper"],
"dimension": ["minecraft:overworld","twilightforest:twilight_forest"],
"incontrol": true,
"seesky":false,
"result": "deny"
},
{
"spawner": true,
"customevent": "addcreeper",
"when": "onjoin",
"result": "allow"
},
{
"mob": ["spore:tendril","spore:mound"],
"when": "onjoin",
"area": "safe",
"result": "deny"
},
{
"mob": ["alexsmobs:farseer"],
"when": "onjoin",
"result": "deny"
}
]
Spawner.json
[
{
"mob": ["minecraft:zombie","spore:inf_human"],
"persecond": 1,
"attempts": 10,
"amount": {
"minimum": 2,
"maximum": 10,
"perplayer": true,
"phase": "night"
},
"conditions": {
"dimension": ["minecraft:overworld","twilightforest:twilight_forest"],
"mindist": 24,
"maxdist": 60,
"minheight": 1,
"maxheight": 256,
"maxthis": 70
}
},
{
"mob": ["minecraft:piglin"],
"persecond": 5,
"attempts": 5,
"amount": {
"minimum": 2,
"maximum": 5,
"perplayer": true
},
"conditions": {
"dimension": ["minecraft:the_nether"],
"mindist": 24,
"maxdist": 36,
"minheight": 1,
"maxheight": 120,
"maxthis": 30
}
},
{
"mob": ["minecraft:zombie"],
"persecond": 5,
"attempts": 5,
"amount": {
"minimum": 1,
"maximum": 5,
"perplayer": true
},
"conditions": {
"dimension": ["minecraft:the_nether"],
"mindist": 32,
"maxdist": 64,
"minheight": 1,
"maxheight": 120,
"maxthis": 20
}
},
{
"mobsfrombiome": "monster",
"persecond": 1,
"attempts": 5,
"amount": {
"minimum": 1,
"maximum": 3,
"perplayer": true
},
"conditions": {
"dimension": ["minecraft:the_nether"],
"mindist": 24,
"maxdist": 60,
"minheight": 1,
"maxheight": 120,
"maxthis": 10
}
}
]
Phases.json
[
{
"name": "night",
"conditions": {
"mintime": 11834,
"maxtime": 23000
}
},
{
"name": "day",
"conditions": {
"mintime": 18000,
"maxtime": 13000
}
}
]
Events.json
[
{
"on": "custom",
"parameters": {
"name": "addcreeper"
},
"conditions": {
"dimension": "minecraft:overworld"
},
"spawn": {
"mob": "minecraft:creeper",
"mindistance": 6,
"maxdistance": 8,
"mincount": 1,
"maxcount": 1,
"attempts": 5,
"norestrictions": true
}
}
]
Areas.json
[
{
"dimension": "minecraft:overworld",
"name": "spawn",
"type": "box",
"x": 30,
"y": 60,
"z": -30,
"dimx": 50,
"dimy": 50,
"dimz": 50
},
{
"dimension": "minecraft:overworld",
"name": "safe",
"type": "box",
"x": 30,
"y": 60,
"z": -30,
"dimx": 50,
"dimy": 100,
"dimz": 50
},
{
"dimension": "minecraft:overworld",
"name": "none",
"type": "box",
"x": 30,
"y": 60,
"z": -30,
"dimx": 15,
"dimy": 100,
"dimz": 15
}
]
I think it happened after load some certain chunks. But can't find relations. After remove all the configs, everything is fine.
incontrol-1.20-9.2.2 Minecraft 1.20.1 Forge 47.2.20
Can confirm it's due to the event rule about spawner.
{
"spawner": true,
"customevent": "addcreeper",
"when": "onjoin",
"result": "allow"
}
After add Alex's mobs and BoP mods this issue appeared, so maybe a conflict.
Checking it out
Should be fixed