mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 21:01:02 -05:00
Add New MagicValues for NoteBlockValueType
This commit is contained in:
parent
c025e954f1
commit
f2b170bbca
2 changed files with 13 additions and 1 deletions
|
@ -789,6 +789,12 @@ public class MagicValues {
|
|||
register(NoteBlockValueType.GUITAR, 7);
|
||||
register(NoteBlockValueType.CHIME, 8);
|
||||
register(NoteBlockValueType.XYLOPHONE, 9);
|
||||
register(NoteBlockValueType.IRON_XYLOPHONE, 10);
|
||||
register(NoteBlockValueType.COW_BELL, 11);
|
||||
register(NoteBlockValueType.DIDGERIDOO, 12);
|
||||
register(NoteBlockValueType.BIT, 13);
|
||||
register(NoteBlockValueType.BANJO, 14);
|
||||
register(NoteBlockValueType.PLING, 15);
|
||||
|
||||
register(PistonValueType.PUSHING, 0);
|
||||
register(PistonValueType.PULLING, 1);
|
||||
|
|
|
@ -10,5 +10,11 @@ public enum NoteBlockValueType implements BlockValueType {
|
|||
BELL,
|
||||
GUITAR,
|
||||
CHIME,
|
||||
XYLOPHONE;
|
||||
XYLOPHONE,
|
||||
IRON_XYLOPHONE,
|
||||
COW_BELL,
|
||||
DIDGERIDOO,
|
||||
BIT,
|
||||
BANJO,
|
||||
PLING;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue