mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2026-08-08 12:11:04 -06:00
Refactored much of the protocol class, new class names for a few
Class3_Sub31 -> ComponentPointer Class3_Sub22 -> ClanMember Class102 -> MapMarker Class3_Sub7 -> SceneryStack
This commit is contained in:
parent
2e4cc73755
commit
83a07e779e
118 changed files with 2196 additions and 2289 deletions
|
|
@ -10,6 +10,8 @@ public final class Inv extends Node {
|
|||
|
||||
@OriginalMember(owner = "client!cb", name = "I", descriptor = "[I")
|
||||
public static final int[] updatedInventories = new int[32];
|
||||
@OriginalMember(owner = "client!ii", name = "c", descriptor = "I")
|
||||
public static int updatedInventoriesWriterIndex = 0;
|
||||
@OriginalMember(owner = "client!qe", name = "p", descriptor = "[I")
|
||||
public int[] objectIds = new int[] { -1 };
|
||||
|
||||
|
|
@ -100,4 +102,12 @@ public final class Inv extends Node {
|
|||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!bc", name = "d", descriptor = "(II)V")
|
||||
public static void delete(@OriginalArg(0) int arg0) {
|
||||
@Pc(14) Inv local14 = (Inv) Static20.objectContainerCache.get((long) arg0);
|
||||
if (local14 != null) {
|
||||
local14.unlink();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue