Update #37 - Touch support without userscript, many other feats

This commit is contained in:
lax1dude
2024-09-21 20:17:42 -07:00
parent 173727c8c4
commit ec1ab8ece3
683 changed files with 62074 additions and 8996 deletions

View File

@ -130,10 +130,10 @@ public class EaglercraftSoundManager {
settings.getSoundLevel(SoundCategory.RECORDS), settings.getSoundLevel(SoundCategory.WEATHER),
settings.getSoundLevel(SoundCategory.BLOCKS), settings.getSoundLevel(SoundCategory.MOBS),
settings.getSoundLevel(SoundCategory.ANIMALS), settings.getSoundLevel(SoundCategory.PLAYERS),
settings.getSoundLevel(SoundCategory.AMBIENT), settings.getSoundLevel(SoundCategory.VOICE)
settings.getSoundLevel(SoundCategory.AMBIENT)
};
activeSounds = new LinkedList();
queuedSounds = new LinkedList();
activeSounds = new LinkedList<>();
queuedSounds = new LinkedList<>();
}
public void unloadSoundSystem() {