mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-04 15:14:49 +00:00
Fixing characters order failed, recursion detected: problem fixed
This commit is contained in:
@@ -318,6 +318,10 @@ public final class SWF implements SWFContainerItem, Timelined {
|
||||
if (checkAll || tag.isModified()) {
|
||||
Set<Integer> needed = new HashSet<>();
|
||||
tag.getNeededCharacters(needed);
|
||||
if (tag instanceof CharacterTag) {
|
||||
CharacterTag characterTag = (CharacterTag) tag;
|
||||
needed.remove(characterTag.getCharacterId());
|
||||
}
|
||||
boolean moved = false;
|
||||
for (Integer id : needed) {
|
||||
if (!addedCharacterIds.contains(id)) {
|
||||
|
||||
Reference in New Issue
Block a user