Update to 1.16

This commit is contained in:
libraryaddict
2020-06-25 15:33:28 +12:00
parent cd64d17a01
commit 1f847e5ad6
19 changed files with 398 additions and 73 deletions

View File

@@ -46,7 +46,7 @@ public class CompileMethods {
int i = 0;
for (Map.Entry<Sound, SoundGroup.SoundType> entry : e.getSounds().entrySet()) {
for (Map.Entry<String, SoundGroup.SoundType> entry : e.getSounds().entrySet()) {
if (entry.getValue() != type) {
continue;
}
@@ -55,7 +55,7 @@ public class CompileMethods {
sound.append(",");
}
sound.append(entry.getKey().name());
sound.append(entry.getKey());
}
}