runescape-client: fix the thing
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user