forgot something

This commit is contained in:
goat 2021-08-24 00:28:36 +02:00
parent fc800dd69b
commit 89b7dac2d1
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -46,7 +46,7 @@ namespace Dalamud.Game.ClientState.Statuses
for (; i < StatusListLength; i++)
{
var status = this[i];
if (status == null || status.StatusID == 0)
if (status == null || status.StatusId == 0)
break;
}
@ -131,7 +131,7 @@ namespace Dalamud.Game.ClientState.Statuses
{
var status = this[i];
if (status == null || status.StatusID == 0)
if (status == null || status.StatusId == 0)
continue;
yield return status;