Fixed #1879 False tag order error with SoundStreamHead

This commit is contained in:
Jindra Petřík
2022-11-20 13:16:21 +01:00
parent 419ea75d9c
commit ce8165567b
2 changed files with 3 additions and 8 deletions

View File

@@ -274,13 +274,6 @@ public class SoundStreamHeadTag extends Tag implements SoundStreamHeadTypeTag {
public String toString() {
return getName() + (virtualCharacterId > 0 ? " (" + virtualCharacterId + ")" : "");
}
@Override
public void getNeededCharacters(Set<Integer> needed) {
if (virtualCharacterId > 0) {
needed.add(virtualCharacterId);
}
}
//getNeededCharacters intentionally not defined
}