feat(core): D.2b-B B-Wire — ClientObjectTable.UpdateStackSize
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
b56087b498
commit
3f190811be
2 changed files with 34 additions and 0 deletions
|
|
@ -205,6 +205,20 @@ public sealed class ClientObjectTable
|
|||
return true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Apply a SetStackSize (0x0197) update: set the object's StackSize + Value and
|
||||
/// fire ObjectUpdated so bound widgets refresh the quantity overlay. False if the
|
||||
/// object is unknown. Retail: ACCWeenieObject::ServerSaysSetStackSize (0x0058...).
|
||||
/// </summary>
|
||||
public bool UpdateStackSize(uint guid, int stackSize, int value)
|
||||
{
|
||||
if (!_objects.TryGetValue(guid, out var item)) return false;
|
||||
item.StackSize = stackSize;
|
||||
item.Value = value;
|
||||
ObjectUpdated?.Invoke(item);
|
||||
return true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Canonical CreateObject ingestion: create-if-absent, else patch the
|
||||
/// wire-carried fields in place (retail SetWeenieDesc). Preserves the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue