rs-client: Cleanup (#1087)

* rs-client: name SpriteBuffer

* rs-client: (re)name spritebuffer methods

* rs-client/deob: Add missed @Export's, make updatemappings fix this next time

* rs-client: run intellij redundant else inspection

* rs-client: invert some script interpreter if's

* deob: checkstyle fixes

* rs-client: SpriteBuffer_loadSprite -> SpriteBuffer_bufferFile
This commit is contained in:
Lucwousin
2019-07-23 19:43:31 +02:00
committed by GitHub
parent 61b4531a0d
commit 596689a4f7
175 changed files with 9825 additions and 9776 deletions

View File

@@ -31,19 +31,18 @@ public class GrandExchangeOfferOwnWorldComparator implements Comparator {
int compare_bridged(GrandExchangeEvent var1, GrandExchangeEvent var2) {
if (var2.world == var1.world) {
return 0;
} else {
if (this.filterWorlds) {
if (Client.worldId == var1.world) {
return -1;
}
if (var2.world == Client.worldId) {
return 1;
}
}
if (this.filterWorlds) {
if (Client.worldId == var1.world) {
return -1;
}
return var1.world < var2.world ? -1 : 1;
if (var2.world == Client.worldId) {
return 1;
}
}
return var1.world < var2.world ? -1 : 1;
}
public boolean equals(Object var1) {