project: Revvvvvvvvvvvvv
This commit is contained in:
@@ -3,33 +3,33 @@ import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("nc")
|
||||
@ObfuscatedName("nd")
|
||||
@Implements("DualNode")
|
||||
public class DualNode extends Node {
|
||||
@ObfuscatedName("cu")
|
||||
@ObfuscatedName("cp")
|
||||
@Export("keyDual")
|
||||
public long keyDual;
|
||||
@ObfuscatedName("cx")
|
||||
@ObfuscatedName("ce")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lnc;"
|
||||
descriptor = "Lnd;"
|
||||
)
|
||||
@Export("previousDual")
|
||||
public DualNode previousDual;
|
||||
@ObfuscatedName("cm")
|
||||
@ObfuscatedName("cv")
|
||||
@ObfuscatedSignature(
|
||||
descriptor = "Lnc;"
|
||||
descriptor = "Lnd;"
|
||||
)
|
||||
@Export("nextDual")
|
||||
public DualNode nextDual;
|
||||
|
||||
@ObfuscatedName("do")
|
||||
@ObfuscatedName("dt")
|
||||
@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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user