mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Add new PaintingTypes
This commit is contained in:
parent
59cb0c07c2
commit
4b9055c252
1 changed files with 6 additions and 2 deletions
|
@ -56,8 +56,12 @@ public enum PaintingType {
|
||||||
SKELETON("Skeleton", 4, 3),
|
SKELETON("Skeleton", 4, 3),
|
||||||
DONKEY_KONG("DonkeyKong", 4, 3),
|
DONKEY_KONG("DonkeyKong", 4, 3),
|
||||||
POINTER("Pointer", 4, 4),
|
POINTER("Pointer", 4, 4),
|
||||||
PIG_SCENE("Pigscene", 4, 4),
|
PIGSCENE("Pigscene", 4, 4),
|
||||||
BURNING_SKULL("BurningSkull", 4, 4);
|
BURNING_SKULL("BurningSkull", 4, 4),
|
||||||
|
EARTH("Earth", 2, 2),
|
||||||
|
WIND("Wind", 2, 2),
|
||||||
|
WATER("Water", 2, 2),
|
||||||
|
FIRE("Fire", 2, 2);
|
||||||
|
|
||||||
private static final PaintingType[] VALUES = values();
|
private static final PaintingType[] VALUES = values();
|
||||||
private final String bedrockName;
|
private final String bedrockName;
|
||||||
|
|
Loading…
Reference in a new issue