mythril that's a seq, NOT an objectmap

This commit is contained in:
Mythril382
2024-05-27 23:13:43 +08:00
committed by GitHub
parent dbb62bd87c
commit ff35e6a7d8

View File

@@ -98,7 +98,7 @@ public class GlobalVars{
for(Sound sound : Core.assets.getAll(Sound.class, new Seq<>(Sound.class))){
if(sound != Sounds.none && sound != Sounds.swish){
String name = sound.file.nameWithoutExtension();
soundNames.put(name);
soundNames.add(name);
put("@sfx-" + name, Sounds.getSoundId(sound));
}
}