fart?!?!?!
This commit is contained in:
parent
d618b241eb
commit
ea8f2cfe8c
1 changed files with 16 additions and 0 deletions
|
@ -55,6 +55,22 @@ public class SongLoaderThread extends Thread {
|
|||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
if (name.endsWith(".mid") || name.endsWith(".midi")) {
|
||||
song = MidiConverter.getSongFromBytes(bytes, name, bot);
|
||||
return;
|
||||
}
|
||||
|
||||
if (name.endsWith(".nbs")) {
|
||||
song = NBSConverter.getSongFromBytes(bytes, name, bot);
|
||||
return;
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
|
||||
exception = new SongLoaderException(Component.translatable("Invalid format"));
|
||||
}
|
||||
|
||||
try {
|
||||
song = MidiConverter.getSongFromBytes(bytes, name, bot);
|
||||
} catch (Exception e) {
|
||||
|
|
Loading…
Add table
Reference in a new issue