Now loops in order
This commit is contained in:
parent
f2f5f9630f
commit
2206652364
@ -132,7 +132,9 @@ public enum DisguiseSound {
|
|||||||
return SoundType.CANCEL;
|
return SoundType.CANCEL;
|
||||||
if (disguiseSounds.get(SoundType.STEP) == Sound.STEP_GRASS && name.startsWith("step."))
|
if (disguiseSounds.get(SoundType.STEP) == Sound.STEP_GRASS && name.startsWith("step."))
|
||||||
return SoundType.STEP;
|
return SoundType.STEP;
|
||||||
for (SoundType type : disguiseSounds.keySet()) {
|
for (SoundType type : SoundType.values()) {
|
||||||
|
if (!disguiseSounds.containsKey(type))
|
||||||
|
continue;
|
||||||
Sound s = disguiseSounds.get(type);
|
Sound s = disguiseSounds.get(type);
|
||||||
if (s != null)
|
if (s != null)
|
||||||
if (CraftSound.getSound(s).equals(name))
|
if (CraftSound.getSound(s).equals(name))
|
||||||
|
Loading…
Reference in New Issue
Block a user