chip mc moment (music loadign is fixed now)

This commit is contained in:
Chipmunk 2023-02-24 17:56:35 -05:00
parent cdd5b3dc5f
commit 686c7d469a

View file

@ -53,8 +53,8 @@ public class SongLoaderThread extends Thread {
bytes = Files.readAllBytes(songPath.toPath()); bytes = Files.readAllBytes(songPath.toPath());
name = songPath.getName(); name = songPath.getName();
} }
} catch (Exception exception) { } catch (Exception e) {
exception = new SongLoaderException(Component.text(exception.getMessage()), exception); exception = new SongLoaderException(Component.text(e.getMessage()), e);
return; return;
} }