File Details
0.10.3
- R
- Oct 24, 2025
- 39.83 KB
- 27
- 11.2.5
- Retail
File Name
PlunderPoints (31).zip
Supported Versions
- 11.2.5
Issue: Lua error on login when sync messages arrive before UI is created
Error Location: UI.lua:1671 in RebuildList() - tried to use ipairs(self.rows) when self.rows was nil
Root Cause: Sync messages from other players can arrive before the main frame is created
Solution: Added safety check to return early if self.rows or self.scrollChild don't exist yet
The UI will get properly refreshed once you actually open the addon frame with /pp. This is a common pattern in WoW addons - early sync messages are processed but UI updates are deferred until the frame exists.