diff --git a/src/main/java/com/xxmicloxx/NoteBlockAPI/model/CustomInstrument.java b/src/main/java/com/xxmicloxx/NoteBlockAPI/model/CustomInstrument.java index 2c4f5dd..5b43173 100644 --- a/src/main/java/com/xxmicloxx/NoteBlockAPI/model/CustomInstrument.java +++ b/src/main/java/com/xxmicloxx/NoteBlockAPI/model/CustomInstrument.java @@ -21,7 +21,7 @@ public CustomInstrument(byte index, String name, String soundFileName) { this.index = index; this.name = name; this.soundFileName = soundFileName.replaceAll(".ogg", ""); - if (this.soundFileName.equalsIgnoreCase("pling")){ + if (this.soundFileName.equalsIgnoreCase("pling") || this.soundFileName.equalsIgnoreCase("block.note_block.pling")) { this.sound = Sound.NOTE_PLING.bukkitSound(); } }