mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
fix MusicPlaylist.java
This commit is contained in:
@@ -93,6 +93,6 @@ public enum MusicPlaylist {
|
|||||||
|
|
||||||
int index = MyRandom.getRandom().nextInt(music.length);
|
int index = MyRandom.getRandom().nextInt(music.length);
|
||||||
System.out.println("Looking up " +path + ForgeConstants.PATH_SEPARATOR + music[index]);
|
System.out.println("Looking up " +path + ForgeConstants.PATH_SEPARATOR + music[index]);
|
||||||
return path + ForgeConstants.PATH_SEPARATOR + music[index];
|
return music[index].getPath();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user