project: Revvvvvvvvvvvvv

This commit is contained in:
Owain van Brakel
2022-02-09 13:21:03 +01:00
parent e91fc1a16a
commit e505012bff
474 changed files with 69930 additions and 69430 deletions

View File

@@ -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
}