Fix mapping for Burning Skull painting type (#608)

Otherwise, painting shows up as a 1x1 painting of another kind.
This commit is contained in:
Camotoy 2020-05-20 13:40:07 -04:00 committed by GitHub
parent 18415d5d15
commit fbfc987d2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ public enum PaintingType {
DONKEY_KONG("DonkeyKong", 4, 3), DONKEY_KONG("DonkeyKong", 4, 3),
POINTER("Pointer", 4, 4), POINTER("Pointer", 4, 4),
PIG_SCENE("Pigscene", 4, 4), PIG_SCENE("Pigscene", 4, 4),
BURNING_SKULL("Flaming Skull", 4, 4); // burning skull on java edition, flaming skull on bedrock BURNING_SKULL("BurningSkull", 4, 4);
private static final PaintingType[] VALUES = values(); private static final PaintingType[] VALUES = values();
private String bedrockName; private String bedrockName;