ModifiedCommand / ConvertJavaTextureToBedrock

Web app for converting Minecraft Java texture packs to Bedrock texture packs
http://modifiedcommand.github.io/ConvertJavaTextureToBedrock/
GNU General Public License v3.0
31 stars 10 forks source link

help #8

Closed Some0neXD closed 3 months ago

Some0neXD commented 5 months ago

image here is the texturepack ! §9§lAs§5§ltro §8§l[§f§816x§l] (2).zip

PiSaucer commented 3 months ago

You need to change the pack.mcmeta since it has newline character in the description (Line 4, Col 74) in it. This doesn't follow json format, this is a creator issue. If you make the following changes it should work.

{
  "pack": {
    "pack_format": 7,
    "description": "        §9§lby §5§lidyll §f§l- §9§lDefault §5§lNebula
    "
  }
}
{
  "pack": {
    "pack_format": 7,
    "description": "        §9§lby §5§lidyll §f§l- §9§lDefault §5§lNebula"
  }
}