Use newer version of fernflower and remove __xx names

This commit is contained in:
Lucas
2019-07-04 23:51:52 +02:00
parent 1f2a9b21d6
commit a8d801d830
294 changed files with 27369 additions and 27322 deletions

View File

@@ -41,7 +41,7 @@ public class ClanMate extends Buddy {
)
@Export("isFriend")
public final boolean isFriend() {
if(this.isFriend0 == TriBool.TriBool_unknown) {
if (this.isFriend0 == TriBool.TriBool_unknown) {
this.fillIsFriend();
}
@@ -55,7 +55,7 @@ public class ClanMate extends Buddy {
)
@Export("fillIsFriend")
void fillIsFriend() {
this.isFriend0 = WorldMapArea.friendSystem.friendsList.contains(super.username0)?TriBool.TriBool_true:TriBool.TriBool_false;
this.isFriend0 = WorldMapArea.friendSystem.friendsList.contains(super.username0) ? TriBool.TriBool_true : TriBool.TriBool_false;
}
@ObfuscatedName("w")
@@ -75,7 +75,7 @@ public class ClanMate extends Buddy {
)
@Export("isIgnored")
public final boolean isIgnored() {
if(this.isIgnored0 == TriBool.TriBool_unknown) {
if (this.isIgnored0 == TriBool.TriBool_unknown) {
this.fillIsIgnored();
}
@@ -89,6 +89,6 @@ public class ClanMate extends Buddy {
)
@Export("fillIsIgnored")
void fillIsIgnored() {
this.isIgnored0 = WorldMapArea.friendSystem.ignoreList.contains(super.username0)?TriBool.TriBool_true:TriBool.TriBool_false;
this.isIgnored0 = WorldMapArea.friendSystem.ignoreList.contains(super.username0) ? TriBool.TriBool_true : TriBool.TriBool_false;
}
}