forked from GeyserMC/Geyser
Fix mapping for Burning Skull painting type (#608)
Otherwise, painting shows up as a 1x1 painting of another kind.
This commit is contained in:
parent
18415d5d15
commit
fbfc987d2b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue