mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-12 16:51:00 -05:00
Merge pull request #182 from finalchild/master
Add BlockFace.SPECIAL. Fix #181
This commit is contained in:
commit
6a71567147
2 changed files with 3 additions and 1 deletions
|
@ -786,6 +786,7 @@ public class MagicValues {
|
|||
register(BlockFace.SOUTH, 3);
|
||||
register(BlockFace.WEST, 4);
|
||||
register(BlockFace.EAST, 5);
|
||||
register(BlockFace.SPECIAL, 255);
|
||||
|
||||
register(EquipmentSlot.MAIN_HAND, 0);
|
||||
register(EquipmentSlot.OFF_HAND, 1);
|
||||
|
|
|
@ -6,5 +6,6 @@ public enum BlockFace {
|
|||
NORTH,
|
||||
SOUTH,
|
||||
WEST,
|
||||
EAST;
|
||||
EAST,
|
||||
SPECIAL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue