We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 361770f commit 68c7d28Copy full SHA for 68c7d28
2 files changed
pom.xml
@@ -5,7 +5,7 @@
5
6
<groupId>com.xxmicloxx</groupId>
7
<artifactId>NoteBlockAPI</artifactId>
8
- <version>1.4</version>
+ <version>1.4.1</version>
9
<name>NoteBlockAPI</name>
10
11
<properties>
src/main/java/com/xxmicloxx/NoteBlockAPI/utils/InstrumentUtils.java
@@ -134,12 +134,12 @@ public static boolean isCustomInstrument(byte instrument) {
134
* @return index where an instrument can be added
135
*/
136
public static byte getCustomInstrumentFirstIndex() {
137
- if (CompatibilityUtils.getServerVersion() >= 0.0112f) {
138
- return 10;
139
- }
140
if (CompatibilityUtils.getServerVersion() >= 0.0114f) {
141
return 16;
142
}
+ if (CompatibilityUtils.getServerVersion() >= 0.0112f) {
+ return 10;
+ }
143
return 5;
144
145
0 commit comments