mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 12:51:09 -05:00
Fix magic values of PistonValue
This commit is contained in:
parent
fa0aaccb61
commit
3b76ee2d23
2 changed files with 5 additions and 5 deletions
|
@ -892,9 +892,9 @@ public class MagicValues {
|
|||
|
||||
register(PistonValue.DOWN, 0);
|
||||
register(PistonValue.UP, 1);
|
||||
register(PistonValue.SOUTH, 2);
|
||||
register(PistonValue.WEST, 3);
|
||||
register(PistonValue.NORTH, 4);
|
||||
register(PistonValue.NORTH, 2);
|
||||
register(PistonValue.SOUTH, 3);
|
||||
register(PistonValue.WEST, 4);
|
||||
register(PistonValue.EAST, 5);
|
||||
|
||||
register(SoundEffect.BLOCK_DISPENSER_DISPENSE, 1000);
|
||||
|
|
|
@ -3,8 +3,8 @@ package com.github.steveice10.mc.protocol.data.game.world.block.value;
|
|||
public enum PistonValue implements BlockValue {
|
||||
DOWN,
|
||||
UP,
|
||||
NORTH,
|
||||
SOUTH,
|
||||
WEST,
|
||||
NORTH,
|
||||
EAST;
|
||||
EAST
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue