rsclient: rev 191

This commit is contained in:
ThatGamerBlue
2020-08-26 21:11:23 +01:00
parent 106de31a9d
commit b6ea56781c
354 changed files with 61347 additions and 61083 deletions

View File

@@ -3,33 +3,33 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("gf")
@ObfuscatedName("gs")
@Implements("DualNode")
public class DualNode extends Node {
@ObfuscatedName("cq")
@ObfuscatedName("cj")
@Export("keyDual")
public long keyDual;
@ObfuscatedName("co")
@ObfuscatedName("cd")
@ObfuscatedSignature(
descriptor = "Lgf;"
descriptor = "Lgs;"
)
@Export("previousDual")
public DualNode previousDual;
@ObfuscatedName("ca")
@ObfuscatedName("cx")
@ObfuscatedSignature(
descriptor = "Lgf;"
descriptor = "Lgs;"
)
@Export("nextDual")
public DualNode nextDual;
@ObfuscatedName("ci")
@ObfuscatedName("dq")
@Export("removeDual")
public void removeDual() {
if (this.nextDual != null) {
this.nextDual.previousDual = this.previousDual;
this.previousDual.nextDual = this.nextDual;
this.previousDual = null;
this.nextDual = null;
if (this.nextDual != null) { // L: 9
this.nextDual.previousDual = this.previousDual; // L: 10
this.previousDual.nextDual = this.nextDual; // L: 11
this.previousDual = null; // L: 12
this.nextDual = null; // L: 13
}
}
} // L: 14
}