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

@@ -27,8 +27,8 @@ public class Buddy extends User {
public int rank;
Buddy() {
this.world = -1;
}
this.world = -1; // L: 4
} // L: 8
@ObfuscatedName("af")
@ObfuscatedSignature(
@@ -37,9 +37,9 @@ public class Buddy extends User {
)
@Export("set")
void set(int var1, int var2) {
this.world = var1;
this.int2 = var2;
}
this.world = var1; // L: 11
this.int2 = var2; // L: 12
} // L: 13
@ObfuscatedName("ar")
@ObfuscatedSignature(
@@ -48,7 +48,7 @@ public class Buddy extends User {
)
@Export("getWorld")
public int getWorld() {
return this.world;
return this.world; // L: 16
}
@ObfuscatedName("az")
@@ -58,6 +58,6 @@ public class Buddy extends User {
)
@Export("hasWorld")
public boolean hasWorld() {
return this.world > 0;
return this.world > 0; // L: 20
}
}