mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-07 13:15:01 +00:00
Fixed being able to bypass a caught mon being forced into the party, fixed Rotom Catalog, fixed incorrect writing of some enums to PBS files, fixed Jukebox's awareness of audio files, fixed bug when battle default weather is primordial, disabled path cache to add speed
This commit is contained in:
@@ -106,10 +106,12 @@ class PokemonJukeboxScreen
|
||||
pbPlayDecisionSE
|
||||
files = []
|
||||
Dir.chdir("Audio/BGM/") do
|
||||
Dir.glob("*.ogg") { |f| files.push(f) }
|
||||
Dir.glob("*.wav") { |f| files.push(f) }
|
||||
Dir.glob("*.mid") { |f| files.push(f) }
|
||||
Dir.glob("*.ogg") { |f| files.push(f) }
|
||||
Dir.glob("*.mp3") { |f| files.push(f) }
|
||||
Dir.glob("*.midi") { |f| files.push(f) }
|
||||
Dir.glob("*.mid") { |f| files.push(f) }
|
||||
Dir.glob("*.wma") { |f| files.push(f) }
|
||||
end
|
||||
files.map! { |f| File.basename(f, ".*") }
|
||||
files.uniq!
|
||||
|
||||
Reference in New Issue
Block a user