Even more... you guessed it! REFACTORING. Removes the need for @Export for methods overriding base java methods

This commit is contained in:
Lucas
2019-07-07 21:30:17 +02:00
parent e2aac6d899
commit 83533475d4
116 changed files with 802 additions and 752 deletions

View File

@@ -11,8 +11,8 @@ public class Buddy extends User {
@ObfuscatedGetter(
intValue = 429472919
)
@Export("world0")
public int world0;
@Export("world")
public int world;
@ObfuscatedName("u")
@ObfuscatedGetter(
intValue = 120689297
@@ -27,7 +27,7 @@ public class Buddy extends User {
public int rank;
Buddy() {
this.world0 = -1;
this.world = -1;
}
@ObfuscatedName("an")
@@ -37,7 +37,7 @@ public class Buddy extends User {
)
@Export("set")
void set(int var1, int var2) {
this.world0 = var1;
this.world = var1;
this.int2 = var2;
}
@@ -46,9 +46,9 @@ public class Buddy extends User {
signature = "(B)I",
garbageValue = "0"
)
@Export("world")
public int world() {
return this.world0;
@Export("getWorld")
public int getWorld() {
return this.world;
}
@ObfuscatedName("au")
@@ -58,7 +58,7 @@ public class Buddy extends User {
)
@Export("hasWorld")
public boolean hasWorld() {
return this.world0 > 0;
return this.world > 0;
}
@ObfuscatedName("ff")