runescape-client: fix the thing

This commit is contained in:
ThatGamerBlue
2020-12-11 06:14:29 +00:00
parent f74baf08ce
commit 463bc42f5f
325 changed files with 35526 additions and 35531 deletions

View File

@@ -10,19 +10,19 @@ public class DirectWrapper extends Wrapper {
Object obj;
DirectWrapper(Object var1, int var2) {
super(var2);
this.obj = var1;
}
super(var2); // L: 7
this.obj = var1; // L: 8
} // L: 9
@ObfuscatedName("h")
@Export("get")
Object get() {
return this.obj;
return this.obj; // L: 12
}
@ObfuscatedName("v")
@Export("isSoft")
boolean isSoft() {
return false;
return false; // L: 16
}
}