Refactored Js5 class

This commit is contained in:
Pazaz 2022-06-15 13:41:21 -04:00
parent c5ef44dfcb
commit bcb88470f8
49 changed files with 423 additions and 423 deletions

View file

@ -33,7 +33,7 @@ public final class SynthSound {
@OriginalMember(owner = "client!sl", name = "a", descriptor = "(Lclient!ve;II)Lclient!sl;")
public static SynthSound create(@OriginalArg(0) Js5 arg0, @OriginalArg(1) int arg1, @OriginalArg(2) int arg2) {
@Pc(5) byte[] local5 = arg0.getFile(arg1, arg2);
@Pc(5) byte[] local5 = arg0.fetchFile(arg1, arg2);
return local5 == null ? null : new SynthSound(new Buffer(local5));
}