mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 21:01:02 -05:00
Merge branch 'master' into 1.14
This commit is contained in:
commit
8bd54b3469
2 changed files with 3 additions and 1 deletions
|
@ -760,6 +760,7 @@ public class MagicValues {
|
|||
|
||||
register(PistonValueType.PUSHING, 0);
|
||||
register(PistonValueType.PULLING, 1);
|
||||
register(PistonValueType.CANCELLED_MID_PUSH, 2);
|
||||
|
||||
register(MobSpawnerValueType.RESET_DELAY, 1);
|
||||
|
||||
|
|
|
@ -2,5 +2,6 @@ package com.github.steveice10.mc.protocol.data.game.world.block.value;
|
|||
|
||||
public enum PistonValueType implements BlockValueType {
|
||||
PUSHING,
|
||||
PULLING;
|
||||
PULLING,
|
||||
CANCELLED_MID_PUSH;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue