3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-07-30 09:08:09 +02:00

Fix mapping for Burning Skull painting type (#608)

Otherwise, painting shows up as a 1x1 painting of another kind.
Dieser Commit ist enthalten in:
Camotoy 2020-05-20 13:40:07 -04:00 committet von GitHub
Ursprung 18415d5d15
Commit fbfc987d2b
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -57,7 +57,7 @@ public enum PaintingType {
DONKEY_KONG("DonkeyKong", 4, 3),
POINTER("Pointer", 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 String bedrockName;