Test improving object manager.

This commit is contained in:
Ottermandias 2024-03-21 23:02:07 +01:00
parent cc88738e3e
commit 1a9239a358
8 changed files with 17 additions and 18 deletions

View file

@ -388,7 +388,7 @@ public sealed unsafe partial class RedrawService : IDisposable
public void RedrawObject(int tableIndex, RedrawType settings)
{
if (tableIndex >= 0 && tableIndex < _objects.Count)
if (tableIndex >= 0 && tableIndex < _objects.TotalCount)
RedrawObject(_objects.GetDalamudObject(tableIndex), settings);
}