Add more id conversions.

Bukkit apparently lower cases these for us, but not Forge.
(And invalid block entities are fine - invalid keys are not).
This commit is contained in:
wizjany 2019-07-19 21:45:25 -04:00
parent a65351e43e
commit edb2e919e7

View File

@ -384,6 +384,20 @@ public class MCEditSchematicReader extends NBTSchematicReader {
return "chest";
case "Sign":
return "sign";
case "Banner":
return "banner";
case "Beacon":
return "beacon";
case "Comparator":
return "comparator";
case "Dropper":
return "dropper";
case "Furnace":
return "furnace";
case "Hopper":
return "hopper";
case "Skull":
return "skull";
default:
return id;
}