Add SHULKER_BOX to UpdatedTileType.

This commit is contained in:
Steveice10 2017-01-21 16:54:16 -08:00
parent 2cf8596668
commit ce0b5ca9ec
2 changed files with 3 additions and 1 deletions

View file

@ -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);

View file

@ -9,5 +9,6 @@ public enum UpdatedTileType {
BANNER,
STRUCTURE_BLOCK,
END_GATEWAY,
SIGN;
SIGN,
SHULKER_BOX;
}