rsc: please read the commit message for my neverending descent into madness

how do i stop making castles
every time i go to the beach i make a castle
every time i open blender i model castles
every time i play chess i castle
i just cant stop making castles dude
This commit is contained in:
ThatGamerBlue
2021-02-26 00:33:45 +00:00
parent 62df7e0ff1
commit 563587e6b0
346 changed files with 84175 additions and 82557 deletions

View File

@@ -6,30 +6,30 @@ import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("gj")
@Implements("DualNode")
public class DualNode extends Node {
@ObfuscatedName("cu")
@Export("keyDual")
public long keyDual;
@ObfuscatedName("ci")
@ObfuscatedSignature(
descriptor = "Lgj;"
)
@Export("previousDual")
public DualNode previousDual;
@ObfuscatedName("cy")
@ObfuscatedSignature(
descriptor = "Lgj;"
)
@Export("nextDual")
public DualNode nextDual;
@ObfuscatedName("cu")
@Export("keyDual")
public long keyDual;
@ObfuscatedName("ci")
@ObfuscatedSignature(
descriptor = "Lgj;"
)
@Export("previousDual")
public DualNode previousDual;
@ObfuscatedName("cy")
@ObfuscatedSignature(
descriptor = "Lgj;"
)
@Export("nextDual")
public DualNode nextDual;
@ObfuscatedName("cm")
@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;
}
}
@ObfuscatedName("cm")
@Export("removeDual")
public void removeDual() {
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
}