#800: Add support for NoteBlock sounds in Skulls

By: Doc <nachito94@msn.com>
This commit is contained in:
Bukkit/Spigot
2022-12-23 12:26:04 +11:00
parent 05e63c40e1
commit 9048c2fc06
4 changed files with 81 additions and 1 deletions

View File

@@ -8,6 +8,10 @@ public class InstrumentTest {
@Test
public void getByType() {
for (Instrument instrument : Instrument.values()) {
if (instrument.getType() < 0) {
continue;
}
assertThat(Instrument.getByType(instrument.getType()), is(instrument));
}
}