mojira.dev

gourmon

Assigned

No issues.

Reported

MC-271255 Custom dimension persists after datapack deletion Invalid MC-271038 Issue with detecting zombie's life using command Invalid MC-263091 piston power supply problem Duplicate

Comments

so if it's not a bug, how can I fix it? I've detected another problem related to custom structure generation Caused by: java.lang.IllegalStateException: Unknown element name:world_surface
which is the type of structure to be generated. Since the syntax change, I haven't seen in the changeloag whether the condition world_surface should be removed, whereas the error tells me that it remains unknown, knowing that it works well in 1.20.4 and not in 1.20.5.

in the patch it's not linked to this type of code and it's just showing that there's a new type of structure generation.

For those creating datapacks with custom dimensions, please test them and let me know if you encounter the same issue and if you've found a solution. The problem is fixed, but only by using third-party software to delete the folder that disrupts the Minecraft world. It's worth noting that even when you disable the datapack and try to delete it, you'll encounter the same issue because the game treats the folder as located in the main Minecraft directory rather than the datapack directory.

Don't hesitate to share the code so I can find the error related to my code. Here is my dimension code.

{
	"type": "minecraft:overworld",
	"generator": {
		"type": "minecraft:noise",
		"settings": "minecraft:overworld",
		"biome_source": {
			"type": "minecraft:checkerboard",
			"scale": 3,
			"biomes": [
				"minecraft:autodeck",
				"minecraft:autodeco"
			]
		}
	}
}

This the code i have rename the name who is now the dimension of zaomy

I found the error because I forgot to add an Objective. I thought it was a bug, but it wasn't.