mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-18 10:38:13 +00:00
AS1/2 unresolved constant as §§ instruction
This commit is contained in:
@@ -345,7 +345,7 @@ public class ActionPush extends Action {
|
||||
}
|
||||
if (o instanceof ConstantIndex) {
|
||||
if ((constantPool == null) || (((ConstantIndex) o).index >= constantPool.size())) {
|
||||
o = "CONSTANT" + ((ConstantIndex) o).index;
|
||||
o = "§§constant" + ((ConstantIndex) o).index;
|
||||
} else {
|
||||
o = constantPool.get(((ConstantIndex) o).index);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user