perf: Migrate HouseGump to DynamicGump (#2428)

## Summary
- Converts the legacy pre-AOS `HouseGump` to `DynamicGump` with a private constructor and the static `DisplayTo` entry-point pattern.
- `HouseListGump` and `HouseRemoveGump` now route back through `HouseGump.DisplayTo` instead of constructing the gump directly.
- Updates the `HouseSign` caller accordingly.
This commit is contained in:
Kamron Batman 2026-05-03 09:33:20 -07:00 committed by GitHub
parent 1ea69d3d40
commit 2e67e60703
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 104 additions and 94 deletions

View file

@ -132,7 +132,7 @@ public partial class HouseSign : Item
}
else
{
m.SendGump(new HouseGump(m, Owner));
HouseGump.DisplayTo(m, Owner);
}
}