finish bringup

This commit is contained in:
Zeruth
2019-07-10 23:25:39 -04:00
parent 65c1794c2b
commit 7ba7bb64dd
5 changed files with 10 additions and 7 deletions

View File

@@ -64,7 +64,7 @@ public abstract class RSItemContainerMixin implements RSItemContainer
@FieldHook("quantities")
@Inject
public void stackSizesChanged(int idx)
public void stackSizesChanged(int containerID)
{
int cycle = client.getGameCycle();
if (rl$lastCycle == cycle)
@@ -75,7 +75,7 @@ public abstract class RSItemContainerMixin implements RSItemContainer
rl$lastCycle = cycle;
ItemContainerChanged event = new ItemContainerChanged(this);
ItemContainerChanged event = new ItemContainerChanged(containerID, this);
client.getCallbacks().postDeferred(event);
}