mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 12:51:09 -05:00
Added shulker box UpdatedTileType to prevent errors on older versions
This commit is contained in:
parent
5ae680aaeb
commit
920ccdb1a1
2 changed files with 2 additions and 0 deletions
|
@ -688,6 +688,7 @@ public class MagicValues {
|
|||
register(UpdatedTileType.STRUCTURE_BLOCK, 7);
|
||||
register(UpdatedTileType.END_GATEWAY, 8);
|
||||
register(UpdatedTileType.SIGN, 9);
|
||||
register(UpdatedTileType.SHULKER_BOX, 10);
|
||||
register(UpdatedTileType.BED, 11);
|
||||
register(UpdatedTileType.JIGSAW_BLOCK, 12);
|
||||
register(UpdatedTileType.CAMPFIRE, 13);
|
||||
|
|
|
@ -10,6 +10,7 @@ public enum UpdatedTileType {
|
|||
STRUCTURE_BLOCK,
|
||||
END_GATEWAY,
|
||||
SIGN,
|
||||
SHULKER_BOX,
|
||||
BED,
|
||||
JIGSAW_BLOCK,
|
||||
CAMPFIRE,
|
||||
|
|
Loading…
Reference in a new issue