Refactor part of the connection loop

This commit is contained in:
Pazaz 2022-04-20 13:54:03 -04:00
parent 80c6ba05ff
commit f462316fce
158 changed files with 2147 additions and 2133 deletions

View file

@ -24,13 +24,13 @@ public final class Static201 {
@OriginalMember(owner = "client!qf", name = "a", descriptor = "(BII)Lclient!be;")
public static Component method1418(@OriginalArg(1) int arg0, @OriginalArg(2) int arg1) {
@Pc(7) Component local7 = Static5.method32(arg0);
@Pc(7) Component local7 = Static5.getComponent(arg0);
if (arg1 == -1) {
return local7;
} else if (local7 == null || local7.aClass13Array3 == null || local7.aClass13Array3.length <= arg1) {
} else if (local7 == null || local7.createdComponents == null || local7.createdComponents.length <= arg1) {
return null;
} else {
return local7.aClass13Array3[arg1];
return local7.createdComponents[arg1];
}
}
}