refactor: make patches compatible with the newest patcher

This commit is contained in:
Lucaskyy 2022-04-11 16:41:29 +02:00
parent f6d07d0abd
commit 1eb85e8f4e
No known key found for this signature in database
GPG Key ID: 1530BFF96D1EEB89
3 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@ class VideoAds : Patch("VideoAds") {
"show-video-ads-method",
"V",
AccessFlags.PUBLIC or AccessFlags.FINAL,
arrayOf("Z"),
listOf("Z"),
null
)
) ?: return PatchResultError("Could not find required method to patch")

View File

@ -19,8 +19,8 @@ class HideSuggestions : Patch("hide-suggestions") {
"hide-suggestions-method",
"V",
AccessFlags.PUBLIC or AccessFlags.FINAL,
arrayOf("Z"),
arrayOf(
listOf("Z"),
listOf(
Opcode.IPUT_BOOLEAN,
Opcode.IGET_OBJECT,
Opcode.IGET_BOOLEAN,

View File

@ -19,8 +19,8 @@ class OldQualityLayout : Patch("old-quality-restore") {
"old-quality-patch-method",
"L",
AccessFlags.FINAL or AccessFlags.PUBLIC,
emptyArray(),
arrayOf(
emptyList(),
listOf(
Opcode.IGET,
Opcode.CONST_4,
Opcode.IF_NE,