Changed: Prepared files have _debug/_debugpcode suffix.

Added: Prepare for p-code debugging.
Added: Preparation progress
Fixed: Nullpointer in tag when character not found.
This commit is contained in:
Jindra Petřík
2026-02-16 18:19:23 +01:00
parent 729e4a1685
commit 203ac6dcc9
4 changed files with 136 additions and 38 deletions

View File

@@ -917,6 +917,9 @@ public abstract class Tag implements NeedsCharacters, Exportable, Serializable {
if (swf.getCharacters(true).containsKey(characterId) && !swf.getCyclicCharacters().contains(characterId)) {
Set<Integer> needed4 = new LinkedHashSet<>();
CharacterTag character = swf.getCharacter(characterId);
if (character == null) {
continue;
}
if (character.isImported()) {
continue;
}