mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 12:51:09 -05:00
Add SHULKER_BOX to UpdatedTileType.
This commit is contained in:
parent
2cf8596668
commit
ce0b5ca9ec
2 changed files with 3 additions and 1 deletions
|
@ -536,6 +536,7 @@ public class MagicValues {
|
|||
register(UpdatedTileType.STRUCTURE_BLOCK, 7);
|
||||
register(UpdatedTileType.END_GATEWAY, 8);
|
||||
register(UpdatedTileType.SIGN, 9);
|
||||
register(UpdatedTileType.SHULKER_BOX, 10);
|
||||
|
||||
register(ClientNotification.INVALID_BED, 0);
|
||||
register(ClientNotification.START_RAIN, 2);
|
||||
|
|
|
@ -9,5 +9,6 @@ public enum UpdatedTileType {
|
|||
BANNER,
|
||||
STRUCTURE_BLOCK,
|
||||
END_GATEWAY,
|
||||
SIGN;
|
||||
SIGN,
|
||||
SHULKER_BOX;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue