more comments

This commit is contained in:
Canny1913
2022-06-15 23:06:40 +03:00
committed by GitHub
parent 9b0e6b5ed8
commit a8940d8cd0

View File

@@ -34,7 +34,7 @@ class CastButtonRemoverPatch : BytecodePatch(
) {
override fun execute(data: BytecodeData): PatchResult {
val result = signatures.first().result!!
val implementation = result.method.implementation!!
val implementation = result.method.implementation!! // stole code from shorts button since it worked pretty good
implementation.addInstruction(
0,
@@ -47,4 +47,4 @@ class CastButtonRemoverPatch : BytecodePatch(
)
return PatchResultSuccess()
}
}
}